You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by op...@apache.org on 2019/03/28 09:56:37 UTC

[hbase] 04/49: HBASE-22044 ByteBufferUtils should not be IA.Public API

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

openinx pushed a commit to branch HBASE-21879
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit 0fb208f635fb20e078ea9cbefc3482d194cb3d1a
Author: Sean Busbey <bu...@apache.org>
AuthorDate: Tue Mar 12 13:23:57 2019 -0500

    HBASE-22044 ByteBufferUtils should not be IA.Public API
    
    Signed-off-by: Andrew Purtell <ap...@apache.org>
---
 .../src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java
index ac7bd30..98bc88a 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java
@@ -43,7 +43,7 @@ import org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesti
  * variable-length long numbers.
  */
 @SuppressWarnings("restriction")
-@InterfaceAudience.Public
+@InterfaceAudience.Private
 public final class ByteBufferUtils {
   // "Compressed integer" serialization helper constants.
   public final static int VALUE_MASK = 0x7f;