From 155a9c61c321d882f371dda665be70e7ca7eae6f Mon Sep 17 00:00:00 2001 From: Jonathan Moore Date: Sat, 18 Dec 2010 11:55:09 +0000 Subject: [PATCH] HTTPCLIENT-975: Make AsynchronousValidator class package-private. git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1050620 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/http/impl/client/cache/AsynchronousValidator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java b/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java index a87c51794..1fdd0d8d0 100644 --- a/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java +++ b/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java @@ -47,7 +47,7 @@ * Class used for asynchronous revalidations to be used when the "stale- * while-revalidate" directive is present */ -public class AsynchronousValidator { +class AsynchronousValidator { private final CachingHttpClient cachingClient; private final ExecutorService executor; private final Set queued;