Skip to content

Commit dd9f6f0

Browse files
author
Ankit Gupta
committed
Fix formatting
1 parent 7a5106f commit dd9f6f0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

java/org/rocksdb/BloomFilter.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@
1010
* with approximately the specified number of bits per key.
1111
* A good value for bitsPerKey is 10, which yields a filter
1212
* with ~ 1% false positive rate.
13-
*
13+
*
1414
* Default value of bits per key is 10.
1515
*/
1616
public class BloomFilter extends Filter {
1717
private static final int DEFAULT_BITS_PER_KEY = 10;
1818
private final int bitsPerKey_;
19-
19+
2020
public BloomFilter() {
2121
this(DEFAULT_BITS_PER_KEY);
2222
}
23-
23+
2424
public BloomFilter(int bitsPerKey) {
2525
super();
2626
bitsPerKey_ = bitsPerKey;
27-
27+
2828
createNewFilter();
2929
}
30-
30+
3131
@Override
3232
protected void createNewFilter() {
3333
createNewFilter0(bitsPerKey_);
3434
}
35-
35+
3636
private native void createNewFilter0(int bitsKeyKey);
37-
}
37+
}

java/org/rocksdb/Filter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
public abstract class Filter {
1616
protected long nativeHandle_ = 0;
17-
17+
1818
protected abstract void createNewFilter();
1919

2020
/**

0 commit comments

Comments
 (0)