From 5d93e5e107743e4fff5fb3dddb574956ebb90d57 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Thu, 23 May 2024 09:23:55 -0400 Subject: [PATCH] Javadoc --- .../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 f5500f747c..2e2b903a13 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 LayerManager build() { * * @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 setCleanup(final Consumer> cleanup) { this.cleanup = cleanup;