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 5f09d49ed Javadoc: Use a sentence
5f09d49ed is described below
commit 5f09d49ed5f7f54dc2eb490cf963eb5b98ff043a
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Oct 18 18:10:21 2024 -0400
Javadoc: Use a sentence
---
.../apache/commons/collections4/bloomfilter/LayeredBloomFilter.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilter.java
b/src/main/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilter.java
index 207e0fe73..2f705d786 100644
---
a/src/main/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilter.java
+++
b/src/main/java/org/apache/commons/collections4/bloomfilter/LayeredBloomFilter.java
@@ -64,6 +64,7 @@ import java.util.function.Predicate;
* @since 4.5.0
*/
public class LayeredBloomFilter<T extends BloomFilter<T>> implements
BloomFilter<LayeredBloomFilter<T>>, BloomFilterExtractor {
+
/**
* A class used to locate matching filters across all the layers.
*/
@@ -96,7 +97,7 @@ public class LayeredBloomFilter<T extends BloomFilter<T>>
implements BloomFilter
private final LayerManager<T> layerManager;
/**
- * Constructor.
+ * Constructs a new instance.
*
* @param shape the Shape of the enclosed Bloom filters
* @param layerManager the LayerManager to manage the layers.