HBASE-22082 Should not use an instance to access static members, which will increases compilation costs.
Signed-off-by: stack <stack@apache.org>
This commit is contained in:
parent
53f449c47e
commit
bb75773ba2
|
@ -3678,7 +3678,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver, Regi
|
|||
visitBatchOperations(true, miniBatchOp.getLastIndexExclusive(), (int index) -> {
|
||||
Mutation mutation = getMutation(index);
|
||||
if (mutation instanceof Put) {
|
||||
region.updateCellTimestamps(familyCellMaps[index].values(), byteTS);
|
||||
HRegion.updateCellTimestamps(familyCellMaps[index].values(), byteTS);
|
||||
miniBatchOp.incrementNumOfPuts();
|
||||
} else {
|
||||
region.prepareDeleteTimestamps(mutation, familyCellMaps[index], byteTS);
|
||||
|
|
Loading…
Reference in New Issue