one more final variable for good measure

This commit is contained in:
Xavier Léauté 2014-03-26 16:50:24 -07:00
parent 2580a9c7f1
commit 83ac1d323e
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ public abstract class HyperLogLogCollector implements Comparable<HyperLogLogColl
private short decrementBuckets()
{
int startPosition = getPayloadBytePosition();
final int startPosition = getPayloadBytePosition();
short count = 0;
for (int i = startPosition; i < startPosition + NUM_BYTES_FOR_BUCKETS; i++) {
final byte val = (byte) (storageBuffer.get(i) - 0x11);