Skip to content

Commit

Permalink
fixed typography issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudenw committed Jun 30, 2023
1 parent 62eba66 commit 4e7ab0b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
* <li>{@code FilterSuplier} is executed and the new filter added to the list as
* the {@code target} filter.</li>
* </ol>
*
* @since 4.5
*/
public class LayerManager implements BloomFilterProducer {
Expand Down Expand Up @@ -76,7 +77,7 @@ private ExtendCheck() {
* Calculates the estimated number of Bloom filters (n) that have been merged
* into the target and compares that with the estimated maximum expected n based
* on the shape. If the target is full then a new target is created.
*
*
* @param shape The shape of the filters in the LayerManager.
* @return A Predicate suitable for the LayerManager extendCheck parameter.
*/
Expand Down Expand Up @@ -147,10 +148,8 @@ public boolean test(LayerManager manager) {
BloomFilter bf = manager.filters.peekLast();
return maxN <= bf.getShape().estimateN(bf.cardinality());
}

};
}

}

/**
Expand Down

0 comments on commit 4e7ab0b

Please sign in to comment.