You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2020/03/26 02:38:51 UTC

[hbase] branch master updated: HBASE-23981 PBType which is marked as IA.Public references protobuf Message (#1323)

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

zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 76e3db6  HBASE-23981 PBType which is marked as IA.Public references protobuf Message (#1323)
76e3db6 is described below

commit 76e3db67201f864fb80531c09da65be7be147470
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Thu Mar 26 10:38:41 2020 +0800

    HBASE-23981 PBType which is marked as IA.Public references protobuf Message (#1323)
    
    Signed-off-by: Nick Dimiduk <nd...@apache.org>
---
 .../src/main/java/org/apache/hadoop/hbase/types/PBType.java             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/types/PBType.java b/hbase-examples/src/main/java/org/apache/hadoop/hbase/types/PBType.java
similarity index 99%
rename from hbase-common/src/main/java/org/apache/hadoop/hbase/types/PBType.java
rename to hbase-examples/src/main/java/org/apache/hadoop/hbase/types/PBType.java
index eb67e71..15d56ff 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/types/PBType.java
+++ b/hbase-examples/src/main/java/org/apache/hadoop/hbase/types/PBType.java
@@ -28,7 +28,7 @@ import org.apache.yetus.audience.InterfaceAudience;
  * A base-class for {@link DataType} implementations backed by protobuf. See
  * {@code PBKeyValue} in {@code hbase-examples} module.
  */
-@InterfaceAudience.Public
+@InterfaceAudience.Private
 public abstract class PBType<T extends Message> implements DataType<T> {
   @Override
   public boolean isOrderPreserving() {