You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ja...@apache.org on 2019/06/14 13:39:37 UTC

[hbase] branch branch-2.1 updated: HBASE-22565 Javadoc Warnings: @see cannot be used in inline documentation

This is an automated email from the ASF dual-hosted git repository.

janh pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new cf63fba  HBASE-22565 Javadoc Warnings: @see cannot be used in inline documentation
cf63fba is described below

commit cf63fbac05a136cb1315b9e75d261c36d71f3880
Author: Murtaza Hassan <sy...@gmail.com>
AuthorDate: Wed Jun 12 11:51:16 2019 +0200

    HBASE-22565 Javadoc Warnings: @see cannot be used in inline documentation
---
 .../test/java/org/apache/hadoop/hbase/HBaseCommonTestingUtility.java  | 3 ++-
 .../main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java    | 3 +--
 .../src/test/java/org/apache/hadoop/hbase/wal/TestWALSplit.java       | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseCommonTestingUtility.java b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseCommonTestingUtility.java
index 385eb71..a7ae0a5 100644
--- a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseCommonTestingUtility.java
+++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseCommonTestingUtility.java
@@ -36,7 +36,8 @@ import org.slf4j.LoggerFactory;
 
 /**
  * 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 {
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
index 3c4b6b8..f1db3f9 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
@@ -242,8 +242,7 @@ public class FSHLog extends AbstractFSWAL<Writer> {
 
   /**
    * 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.
diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestWALSplit.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestWALSplit.java
index 7504ce4..125f2e2 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestWALSplit.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestWALSplit.java
@@ -379,7 +379,7 @@ public class TestWALSplit {
   }
 
   /**
-   * {@see https://issues.apache.org/jira/browse/HBASE-3020}
+   * @see "https://issues.apache.org/jira/browse/HBASE-3020"
    */
   @Test
   public void testRecoveredEditsPathForMeta() throws IOException {
@@ -1136,7 +1136,7 @@ public class TestWALSplit {
   }
 
   /**
-   * {@see https://issues.apache.org/jira/browse/HBASE-4862}
+   * @see "https://issues.apache.org/jira/browse/HBASE-4862"
    */
   @Test
   public void testConcurrentSplitLogAndReplayRecoverEdit() throws IOException {