seagle-yuan commented on code in PR #1896:
URL: 
https://github.com/apache/incubator-hugegraph/pull/1896#discussion_r897989328


##########
hugegraph-hbase/src/main/java/com/baidu/hugegraph/backend/store/hbase/HbaseSessions.java:
##########
@@ -331,55 +331,55 @@ public long storeSize(String table) throws IOException {
         /**
          * Add a row record to a table
          */
-        public abstract void put(String table, byte[] family, byte[] rowkey,
-                                 Collection<BackendColumn> columns);
+        void put(String table, byte[] family, byte[] rowkey,
+                 Collection<BackendColumn> columns);
 
         /**
          * Add a row record to a table(can be used when adding an index)
          */
-        public abstract void put(String table, byte[] family,
-                                 byte[] rowkey, byte[] qualifier, byte[] 
value);
+        void put(String table, byte[] family, byte[] rowkey, byte[] qualifier,
+                 byte[] value);
 
         /**
          * Delete a record by rowkey and qualifier from a table
          */
-        public default void remove(String table, byte[] family,
-                                   byte[] rowkey, byte[] qualifier) {
+        default void remove(String table, byte[] family, byte[] rowkey,
+                            byte[] qualifier) {
             this.remove(table, family, rowkey, qualifier, false);
         }
 
         /**
          * Delete a record by rowkey and qualifier from a table,
          * just delete the latest version of the specified column if need
          */
-        public void remove(String table, byte[] family, byte[] rowkey,
-                           byte[] qualifier, boolean latestVersion);
+        void remove(String table, byte[] family, byte[] rowkey,
+                    byte[] qualifier, boolean latestVersion);
 
         /**
          * Delete a record by rowkey from a table
          */
-        public void delete(String table, byte[] family, byte[] rowkey);
+        void delete(String table, byte[] family, byte[] rowkey);
 
         /**
          * Get a record by rowkey and qualifier from a table
          */
-        public R get(String table, byte[] family, byte[] rowkey,
+        R get(String table, byte[] family, byte[] rowkey,

Review Comment:
   ?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to