Revert "SE-22006 Fix branch-2.1 findbugs warning; causes nightly show as failed."

This reverts commit 18d02ffd5d.

bad commit message
This commit is contained in:
Sean Busbey 2019-03-07 08:49:07 -06:00
parent 63d0e6ed4a
commit 415ff2a19d
1 changed files with 3 additions and 2 deletions

View File

@ -1613,8 +1613,9 @@ public class HRegionServer extends HasThread implements
MemStoreLAB.POOL_INITIAL_SIZE_DEFAULT);
int chunkSize = conf.getInt(MemStoreLAB.CHUNK_SIZE_KEY, MemStoreLAB.CHUNK_SIZE_DEFAULT);
// init the chunkCreator
ChunkCreator.initialize(chunkSize, offheap, globalMemStoreSize, poolSizePercentage,
initialCountPercentage, this.hMemManager);
ChunkCreator chunkCreator =
ChunkCreator.initialize(chunkSize, offheap, globalMemStoreSize, poolSizePercentage,
initialCountPercentage, this.hMemManager);
}
}