From ba6e0e7ee2092e9592c2667d4b8341991a8b39a3 Mon Sep 17 00:00:00 2001 From: Sean Busbey Date: Tue, 12 Mar 2019 13:23:57 -0500 Subject: [PATCH] HBASE-22044 ByteBufferUtils should not be IA.Public API --- .../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 deb667b672..3ea0a5c5d5 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 @@ -42,7 +42,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; -- 2.16.1