Skip to content

Commit

Permalink
fixed javadoc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudenw committed Jul 6, 2023
1 parent 1addfe7 commit ac92c7d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public static final Predicate<LayerManager> advanceOnCalculatedSaturation(Shape
*
* @param breakAt the number of filters to merge into each filter in the list.
* @return A Predicate suitable for the LayerManager extendCheck parameter.
* @throws IllegalArgumentException if breakAt is <= 0
* @throws IllegalArgumentException if breakAt is &lt;= 0
*/
public static Predicate<LayerManager> advanceOnCount(int breakAt) {
if (breakAt <= 0) {
Expand All @@ -123,7 +123,7 @@ public boolean test(LayerManager filter) {
*
* @param maxN the maximum number of estimated items in the filter.
* @return A Predicate suitable for the LayerManager extendCheck parameter.
* @throws IllegalArgumentException if maxN is <= 0
* @throws IllegalArgumentException if maxN is &lt;= 0
*/
public static final Predicate<LayerManager> advanceOnSaturation(double maxN) {
if (maxN <= 0) {
Expand Down Expand Up @@ -171,7 +171,7 @@ public static final Consumer<LinkedList<BloomFilter>> noCleanup() {
* @param maxSize the maximum number of filters for the list. Must be greater
* than 0
* @return A Consumer for the LayerManager filterCleanup constructor argument.
* @throws IllegalArgumentException if maxSize is <= 0
* @throws IllegalArgumentException if maxSize is &lt;= 0
*/
public static final Consumer<LinkedList<BloomFilter>> onMaxSize(int maxSize) {
if (maxSize <= 0) {
Expand Down

0 comments on commit ac92c7d

Please sign in to comment.