This commit is contained in:
Gary Gregory 2024-06-23 07:48:01 -04:00
parent 191e0e8197
commit 0be038790d
1 changed files with 5 additions and 0 deletions

View File

@ -116,6 +116,11 @@ public abstract class WrappedBloomFilter implements BloomFilter {
return wrapped.getShape();
}
/**
* Gets the wrapped BloomFilter.
*
* @return the wrapped BloomFilter.
*/
protected BloomFilter getWrapped() {
return wrapped;
}