Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed Jun 8, 2024
1 parent 7f8e128 commit 0f64abd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bloom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,13 @@ impl BloomFilter {
true
}

/* /// Returns `true` if the item may be contained.
/// Returns `true` if the item may be contained.
///
/// Will never have a false negative.
#[must_use]
pub fn contains(&self, key: &[u8]) -> bool {
self.contains_hash(Self::get_hash(key))
} */
}

/// Adds the key to the filter
pub fn set_with_hash(&mut self, (mut h1, mut h2): CompositeHash) {
Expand Down

0 comments on commit 0f64abd

Please sign in to comment.