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 5d93e5e10 Javadoc 5d93e5e10 is described below commit 5d93e5e107743e4fff5fb3dddb574956ebb90d57 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu May 23 09:23:55 2024 -0400 Javadoc --- .../java/org/apache/commons/collections4/bloomfilter/LayerManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 f5500f747..2e2b903a1 100644 --- a/src/main/java/org/apache/commons/collections4/bloomfilter/LayerManager.java +++ b/src/main/java/org/apache/commons/collections4/bloomfilter/LayerManager.java @@ -83,7 +83,7 @@ public class LayerManager<T extends BloomFilter> implements BloomFilterProducer * * @param cleanup the Consumer that will modify the list of filters removing out * dated or stale filters. - * @return this + * @return {@code this} instance. */ public Builder<T> setCleanup(final Consumer<Deque<T>> cleanup) { this.cleanup = cleanup;