Skip to content

Commit e395da4

Browse files
committed
Cleanup
1 parent f49dc79 commit e395da4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/org/fastfilter/bloom/SuccinctCountingBloom.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package org.fastfilter.bloom;
22

3-
import java.math.BigInteger;
4-
53
import org.fastfilter.Filter;
64
import org.fastfilter.utils.Hash;
75

@@ -204,7 +202,7 @@ private void decrement(int x) {
204202
long n = overflow[index + bitIndex / 16];
205203
overflow[index + bitIndex / 16] = n - getBit(bitIndex);
206204
n >>>= 4 * (bitIndex & 0xf);
207-
if ((n & 15) == 1) {
205+
if ((n & 0xf) == 1) {
208206
data.clear(x);
209207
}
210208
if (count < 64) {

0 commit comments

Comments
 (0)