Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HBASE-22565 Javadoc Warnings: @see cannot be used in inline documentation #300

Merged
merged 1 commit into from
Jun 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@

/**
* Common helpers for testing HBase that do not depend on specific server/etc. things.
* {@see org.apache.hadoop.hbase.HBaseTestingUtility}
* @see org.apache.hadoop.hbase.HBaseCommonTestingUtility
*
*/
@InterfaceAudience.Public
public class HBaseCommonTestingUtility {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,7 @@ public FSHLog(final FileSystem fs, final Path rootDir, final String logDir,

/**
* Currently, we need to expose the writer's OutputStream to tests so that they can manipulate the
* default behavior (such as setting the maxRecoveryErrorCount value for example (see
* {@see org.apache.hadoop.hbase.regionserver.wal.AbstractTestWALReplay#testReplayEditsWrittenIntoWAL()}). This is
* default behavior (such as setting the maxRecoveryErrorCount value). This is
* done using reflection on the underlying HDFS OutputStream. NOTE: This could be removed once Hadoop1 support is
* removed.
* @return null if underlying stream is not ready.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ private void loop(final Writer writer) {
}

/**
* {@see https://issues.apache.org/jira/browse/HBASE-3020}
* @see "https://issues.apache.org/jira/browse/HBASE-3020"
HorizonNet marked this conversation as resolved.
Show resolved Hide resolved
*/
@Test
public void testRecoveredEditsPathForMeta() throws IOException {
Expand Down Expand Up @@ -1132,7 +1132,7 @@ public void testSplitLogFileFirstLineCorruptionLog()
}

/**
* {@see https://issues.apache.org/jira/browse/HBASE-4862}
* @see "https://issues.apache.org/jira/browse/HBASE-4862"
HorizonNet marked this conversation as resolved.
Show resolved Hide resolved
*/
@Test
public void testConcurrentSplitLogAndReplayRecoverEdit() throws IOException {
Expand Down