Skip to content

Commit

Permalink
HBASE-10116 Addendum: fix findbugs warning
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1550522 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
ndimiduk committed Dec 12, 2013
1 parent 1fb9851 commit 2124f40
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -179,7 +179,7 @@ private BigDecimal[] stringArrayToBigDecimalArray(String[] parsee) {

private void addSlab(int blockSize, int numBlocks) {
LOG.info("Creating a slab of blockSize " + blockSize + " with " + numBlocks
+ " blocks, " + StringUtils.humanReadableInt(blockSize * numBlocks) + "bytes.");
+ " blocks, " + StringUtils.humanReadableInt(blockSize * (long) numBlocks) + "bytes.");
sizer.put(blockSize, new SingleSizeCache(blockSize, numBlocks, this));
}

Expand Down

0 comments on commit 2124f40

Please sign in to comment.