This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new ff0dc6032 Javadoc
ff0dc6032 is described below

commit ff0dc6032dc9396877a08cd3d4b122389c7f61cf
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Oct 18 18:20:15 2024 -0400

    Javadoc
---
 .../java/org/apache/commons/collections4/bloomfilter/BloomFilter.java  | 3 +--
 .../java/org/apache/commons/collections4/bloomfilter/IndexUtils.java   | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilter.java 
b/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilter.java
index 6f850c025..4ab18c34c 100644
--- a/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilter.java
+++ b/src/main/java/org/apache/commons/collections4/bloomfilter/BloomFilter.java
@@ -32,11 +32,10 @@ import java.util.Objects;
 public interface BloomFilter<T extends BloomFilter<T>> extends IndexExtractor, 
BitMapExtractor {
 
     /**
-     * The sparse characteristic used to determine the best method for 
matching.
+     * The sparse characteristic used to determine the best method for 
matching: {@value}.
      * <p>For `sparse` implementations
      * the {@code forEachIndex(IntConsumer consumer)} method is more 
efficient. For non `sparse` implementations
      * the {@code forEachBitMap(LongConsumer consumer)} is more efficient. 
Implementers should determine if it is easier
-     * for the implementation to produce indexes of bit map blocks.</p>
      */
     int SPARSE = 0x1;
 
diff --git 
a/src/main/java/org/apache/commons/collections4/bloomfilter/IndexUtils.java 
b/src/main/java/org/apache/commons/collections4/bloomfilter/IndexUtils.java
index fca9595d4..50a924aca 100644
--- a/src/main/java/org/apache/commons/collections4/bloomfilter/IndexUtils.java
+++ b/src/main/java/org/apache/commons/collections4/bloomfilter/IndexUtils.java
@@ -25,7 +25,7 @@ import java.util.Arrays;
 final class IndexUtils {
 
     /**
-     * The maximum array size for the methods in this class.
+     * The maximum array size for the methods in this class: {@value}.
      */
     static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
 

Reply via email to