You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2013/01/24 14:37:10 UTC

svn commit: r1437994 - /httpcomponents/httpclient/trunk/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java

Author: olegk
Date: Thu Jan 24 13:37:10 2013
New Revision: 1437994

URL: http://svn.apache.org/viewvc?rev=1437994&view=rev
Log:
Fixed Java 5 incompatibility causing a compile error with JDK 1.5

Modified:
    httpcomponents/httpclient/trunk/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java

Modified: httpcomponents/httpclient/trunk/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java?rev=1437994&r1=1437993&r2=1437994&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java (original)
+++ httpcomponents/httpclient/trunk/httpclient-cache/src/main/java/org/apache/http/impl/client/cache/AsynchronousValidator.java Thu Jan 24 13:37:10 2013
@@ -87,7 +87,6 @@ class AsynchronousValidator implements C
         this.cacheKeyGenerator = new CacheKeyGenerator();
     }
 
-    @Override
     public void close() throws IOException {
         executor.shutdown();
     }