From d94abe3f3f161a9ed715e58cc02d8b6f4e47ab26 Mon Sep 17 00:00:00 2001 From: Lachlan Roberts Date: Thu, 3 Nov 2022 18:10:39 +1100 Subject: [PATCH] fix javadoc in ValidatingCachingContentFactory Signed-off-by: Lachlan Roberts --- .../eclipse/jetty/http/ValidatingCachingContentFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jetty-core/jetty-http/src/main/java/org/eclipse/jetty/http/ValidatingCachingContentFactory.java b/jetty-core/jetty-http/src/main/java/org/eclipse/jetty/http/ValidatingCachingContentFactory.java index 10092cfa4f3..54e78ab99c6 100644 --- a/jetty-core/jetty-http/src/main/java/org/eclipse/jetty/http/ValidatingCachingContentFactory.java +++ b/jetty-core/jetty-http/src/main/java/org/eclipse/jetty/http/ValidatingCachingContentFactory.java @@ -72,8 +72,8 @@ public class ValidatingCachingContentFactory extends CachingHttpContentFactory i * @param validationTime time between filesystem checks in ms to see if an {@link HttpContent} is still valid (-1 never validate, 0 always validate). * @param byteBufferPool the {@link org.eclipse.jetty.io.ByteBufferPool} to use. * @param scheduler scheduler to use for the sweeper, can be null to not use sweeper. - * @param sweepDelay time between runs of the sweeper in ms (if < 0 never sweep for invalid entries). - * @param maxCacheIdleTime amount of time in ms an entry can be unused before evicted by the sweeper (if < 0 never evict unused entries). + * @param sweepDelay time between runs of the sweeper in ms (if 0 never sweep for invalid entries). + * @param maxCacheIdleTime amount of time in ms an entry can be unused before evicted by the sweeper (if 0 never evict unused entries). */ public ValidatingCachingContentFactory(@Name("authority") HttpContent.Factory authority, @Name("validationTime") long validationTime,