Skip to content

Commit 859f6b0

Browse files
committed
Fix spotless violation
1 parent 95d7892 commit 859f6b0

File tree

1 file changed

+1
-2
lines changed
  • hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver

1 file changed

+1
-2
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RowCache.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ public void onRemoval(RowCacheKey key, RowCells value, @NonNull RemovalCause cau
5656
Caffeine.newBuilder().maximumWeight(maxSizeBytes).removalListener(new EvictionListener())
5757
.weigher((RowCacheKey key,
5858
RowCells value) -> (int) Math.min(key.heapSize() + value.heapSize(), Integer.MAX_VALUE))
59-
.recordStats()
60-
.build();
59+
.recordStats().build();
6160
}
6261

6362
void cacheRow(RowCacheKey key, RowCells value) {

0 commit comments

Comments
 (0)