You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by an...@apache.org on 2015/04/30 17:28:46 UTC

hbase git commit: HBASE-13595 Fix Javadoc warn induced in Bytes.java.

Repository: hbase
Updated Branches:
  refs/heads/master 3a9c2b0c5 -> d88a4180f


HBASE-13595 Fix Javadoc warn induced in Bytes.java.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/d88a4180
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/d88a4180
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/d88a4180

Branch: refs/heads/master
Commit: d88a4180f780e25ec442917de0c4e6f8a5c92686
Parents: 3a9c2b0
Author: anoopsjohn <an...@gmail.com>
Authored: Thu Apr 30 20:58:25 2015 +0530
Committer: anoopsjohn <an...@gmail.com>
Committed: Thu Apr 30 20:58:25 2015 +0530

----------------------------------------------------------------------
 dev-support/test-patch.properties                                  | 2 +-
 hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/d88a4180/dev-support/test-patch.properties
----------------------------------------------------------------------
diff --git a/dev-support/test-patch.properties b/dev-support/test-patch.properties
index 9c17cfa..490980a 100644
--- a/dev-support/test-patch.properties
+++ b/dev-support/test-patch.properties
@@ -20,7 +20,7 @@ MAVEN_OPTS="${MAVEN_OPTS:-"-Xmx3100M"}"
 
 OK_RELEASEAUDIT_WARNINGS=0
 # Allow two warnings.  Javadoc complains about sun.misc.Unsafe use.  See HBASE-7457
-OK_JAVADOC_WARNINGS=2
+OK_JAVADOC_WARNINGS=3
 
 MAX_LINE_LENGTH=100
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/d88a4180/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java
----------------------------------------------------------------------
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java
index 84c708b..0a30809 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java
@@ -1376,7 +1376,7 @@ public class Bytes implements Comparable<Bytes> {
    * @param offset Offset into array at which vint begins.
    * @throws java.io.IOException e
    * @return deserialized long from buffer.
-   * @deprecated Use {@link #readAsVLong()} instead.
+   * @deprecated Use {@link #readAsVLong(byte[], int)} instead.
    */
   @Deprecated
   public static long readVLong(final byte [] buffer, final int offset)