You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2016/08/11 00:53:19 UTC

hbase git commit: HBASE-16363 Correct javadoc for qualifier length and value (Xiang Li)

Repository: hbase
Updated Branches:
  refs/heads/master 88956676d -> 7e3251051


HBASE-16363 Correct javadoc for qualifier length and value (Xiang Li)


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

Branch: refs/heads/master
Commit: 7e3251051313d6ef8fd173c7b530c1822667410e
Parents: 8895667
Author: stack <st...@apache.org>
Authored: Wed Aug 10 17:53:13 2016 -0700
Committer: stack <st...@apache.org>
Committed: Wed Aug 10 17:53:13 2016 -0700

----------------------------------------------------------------------
 hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/7e325105/hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java
----------------------------------------------------------------------
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java
index 5673ec9..626f041 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java
@@ -106,8 +106,7 @@ public interface Cell {
   //3) Qualifier
 
   /**
-   * Contiguous raw bytes that may start at any index in the containing array. Max length is
-   * Short.MAX_VALUE which is 32,767 bytes.
+   * Contiguous raw bytes that may start at any index in the containing array.
    * @return The array containing the qualifier bytes.
    */
   byte[] getQualifierArray();
@@ -155,7 +154,7 @@ public interface Cell {
 
   /**
    * Contiguous raw bytes that may start at any index in the containing array. Max length is
-   * Integer.MAX_VALUE which is 2,147,483,648 bytes.
+   * Integer.MAX_VALUE which is 2,147,483,647 bytes.
    * @return The array containing the value bytes.
    */
   byte[] getValueArray();