mirror of https://github.com/apache/druid.git
one more final variable for good measure
This commit is contained in:
parent
2580a9c7f1
commit
83ac1d323e
|
@ -523,7 +523,7 @@ public abstract class HyperLogLogCollector implements Comparable<HyperLogLogColl
|
||||||
|
|
||||||
private short decrementBuckets()
|
private short decrementBuckets()
|
||||||
{
|
{
|
||||||
int startPosition = getPayloadBytePosition();
|
final int startPosition = getPayloadBytePosition();
|
||||||
short count = 0;
|
short count = 0;
|
||||||
for (int i = startPosition; i < startPosition + NUM_BYTES_FOR_BUCKETS; i++) {
|
for (int i = startPosition; i < startPosition + NUM_BYTES_FOR_BUCKETS; i++) {
|
||||||
final byte val = (byte) (storageBuffer.get(i) - 0x11);
|
final byte val = (byte) (storageBuffer.get(i) - 0x11);
|
||||||
|
|
Loading…
Reference in New Issue