File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
hugegraph-hbase/src/main/java/com/baidu/hugegraph/backend/store/hbase Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -36,12 +36,12 @@ public boolean supportsScanToken() {
3636
3737 @ Override
3838 public boolean supportsScanKeyPrefix () {
39- return !enablePartition ;
39+ return !this . enablePartition ;
4040 }
4141
4242 @ Override
4343 public boolean supportsScanKeyRange () {
44- return !enablePartition ;
44+ return !this . enablePartition ;
4545 }
4646
4747 @ Override
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public abstract class HbaseStore extends AbstractBackendStore<Session> {
5454
5555 private static final Logger LOG = Log .logger (HbaseStore .class );
5656
57- private static BackendFeatures FEATURES ;
57+ private final BackendFeatures FEATURES ;
5858
5959 private final String store ;
6060 private final String namespace ;
@@ -66,8 +66,8 @@ public abstract class HbaseStore extends AbstractBackendStore<Session> {
6666
6767 private HbaseSessions sessions ;
6868
69- public HbaseStore (final BackendStoreProvider provider ,
70- final String namespace , final String store , boolean enablePartition ) {
69+ public HbaseStore (BackendStoreProvider provider ,
70+ String namespace , String store , boolean enablePartition ) {
7171 this .tables = new HashMap <>();
7272
7373 this .provider = provider ;
You can’t perform that action at this time.
0 commit comments