HBASE-22242 Removed deprecated method in RegionLoadStats

This commit is contained in:
Jan Hentschel 2019-04-14 18:50:21 +02:00
parent cb84b2788a
commit 7d1399caa7
1 changed files with 0 additions and 9 deletions

View File

@ -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;
}