Skip to content

Commit 787dbbb

Browse files
committed
Cleanup
1 parent 9e95adb commit 787dbbb

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

fastfilter/src/main/java/org/fastfilter/xor/Xor16.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import org.fastfilter.utils.Hash;
55

66
/**
7-
* The Xor Filter, a new algorithm that can replace a Bloom filter.
7+
* The xor filter, a new algorithm that can replace a Bloom filter.
88
*
99
* It needs 1.23 log(1/fpp) bits per key. It is related to the BDZ algorithm [1]
1010
* (a minimal perfect hash function algorithm).

fastfilter/src/main/java/org/fastfilter/xor/Xor8.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import org.fastfilter.utils.Hash;
77

88
/**
9-
* The Xor Filter, a new algorithm that can replace a Bloom filter.
9+
* The xor filter, a new algorithm that can replace a Bloom filter.
1010
*
1111
* It needs 1.23 log(1/fpp) bits per key. It is related to the BDZ algorithm [1]
1212
* (a minimal perfect hash function algorithm).

fastfilter/src/test/java/org/fastfilter/SimpleFuzzer.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
package org.fastfilter;
22

3+
import static junit.framework.TestCase.assertTrue;
4+
35
import java.util.Arrays;
4-
import java.util.EnumSet;
56
import java.util.concurrent.ThreadLocalRandom;
67
import java.util.stream.LongStream;
78

8-
import org.fastfilter.Filter;
99
import org.fastfilter.utils.Hash;
1010

11-
import static junit.framework.TestCase.assertTrue;
12-
import static org.fastfilter.TestFilterType.*;
13-
1411
public class SimpleFuzzer {
1512

1613
public static void main(String... args) {

0 commit comments

Comments
 (0)