This is an automated email from the ASF dual-hosted git repository.
janh 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 7d1399c HBASE-22242 Removed deprecated method in RegionLoadStats
7d1399c is described below
commit 7d1399caa77ebcfddb0f8fdf225b114015781a6c
Author: Jan Hentschel <[email protected]>
AuthorDate: Sun Apr 14 18:50:21 2019 +0200
HBASE-22242 Removed deprecated method in RegionLoadStats
---
.../java/org/apache/hadoop/hbase/client/RegionLoadStats.java | 9 ---------
1 file changed, 9 deletions(-)
diff --git
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RegionLoadStats.java
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RegionLoadStats.java
index 052ac53..d1ff3bc 100644
---
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RegionLoadStats.java
+++
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RegionLoadStats.java
@@ -34,15 +34,6 @@ public class RegionLoadStats {
this.compactionPressure = compactionPressure;
}
- /**
- * @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0.
- * Use {@link #getMemStoreLoad()} instead
- */
- @Deprecated
- public int getMemstoreLoad() {
- return this.memstoreLoad;
- }
-
public int getMemStoreLoad() {
return this.memstoreLoad;
}