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 c4ad5f53a Javadoc: Fix double the
c4ad5f53a is described below
commit c4ad5f53ad36fcb249fb7683e09d6127a9484dcd
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Dec 26 16:14:42 2025 -0500
Javadoc: Fix double the
---
.../org/apache/commons/collections4/bloomfilter/LayerManager.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/main/java/org/apache/commons/collections4/bloomfilter/LayerManager.java
b/src/main/java/org/apache/commons/collections4/bloomfilter/LayerManager.java
index 1cb64ded8..607bf0517 100644
---
a/src/main/java/org/apache/commons/collections4/bloomfilter/LayerManager.java
+++
b/src/main/java/org/apache/commons/collections4/bloomfilter/LayerManager.java
@@ -138,7 +138,7 @@ public class LayerManager<T extends BloomFilter<T>>
implements BloomFilterExtrac
}
/**
- * Removes the earliest filters in the list when the the number of
filters
+ * Removes the earliest filters in the list when the number of filters
* exceeds maxSize.
*
* @param <T> Type of BloomFilter.
@@ -292,7 +292,7 @@ public class LayerManager<T extends BloomFilter<T>>
implements BloomFilterExtrac
/**
* Constructs a new instance.
*
- * @param filterSupplier the non-null supplier of new Bloom filters to add
the the list
+ * @param filterSupplier the non-null supplier of new Bloom filters to add
the list
* when necessary.
* @param extendCheck The non-null predicate that checks if a new
filter should be
* added to the list.