Skip to content

Commit 9692311

Browse files
committed
duplicated line
1 parent aed7e6b commit 9692311

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/data_structures/probabilistic/bloom_filter.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ pub trait BloomFilter<Item: Hash> {
2323
/// If it's `true` the item may be present, or maybe another one produces the same hash
2424
#[allow(dead_code)]
2525
#[derive(Debug)]
26-
#[allow(dead_code)]
2726
struct BasicBloomFilter<const CAPACITY: usize> {
2827
vec: [bool; CAPACITY],
2928
}

0 commit comments

Comments
 (0)