We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49dc79 commit e395da4Copy full SHA for e395da4
src/main/java/org/fastfilter/bloom/SuccinctCountingBloom.java
@@ -1,7 +1,5 @@
1
package org.fastfilter.bloom;
2
3
-import java.math.BigInteger;
4
-
5
import org.fastfilter.Filter;
6
import org.fastfilter.utils.Hash;
7
@@ -204,7 +202,7 @@ private void decrement(int x) {
204
202
long n = overflow[index + bitIndex / 16];
205
203
overflow[index + bitIndex / 16] = n - getBit(bitIndex);
206
n >>>= 4 * (bitIndex & 0xf);
207
- if ((n & 15) == 1) {
+ if ((n & 0xf) == 1) {
208
data.clear(x);
209
}
210
if (count < 64) {
0 commit comments