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/07/15 15:13:56 UTC

svn commit: r1503227 - /httpcomponents/httpasyncclient/trunk/httpasyncclient/src/main/java/org/apache/http/impl/nio/client/InternalHttpAsyncClient.java

Author: olegk
Date: Mon Jul 15 13:13:56 2013
New Revision: 1503227

URL: http://svn.apache.org/r1503227
Log:
Fixed Java 1.5 incompatibility

Modified:
    httpcomponents/httpasyncclient/trunk/httpasyncclient/src/main/java/org/apache/http/impl/nio/client/InternalHttpAsyncClient.java

Modified: httpcomponents/httpasyncclient/trunk/httpasyncclient/src/main/java/org/apache/http/impl/nio/client/InternalHttpAsyncClient.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpasyncclient/trunk/httpasyncclient/src/main/java/org/apache/http/impl/nio/client/InternalHttpAsyncClient.java?rev=1503227&r1=1503226&r2=1503227&view=diff
==============================================================================
--- httpcomponents/httpasyncclient/trunk/httpasyncclient/src/main/java/org/apache/http/impl/nio/client/InternalHttpAsyncClient.java (original)
+++ httpcomponents/httpasyncclient/trunk/httpasyncclient/src/main/java/org/apache/http/impl/nio/client/InternalHttpAsyncClient.java Mon Jul 15 13:13:56 2013
@@ -88,7 +88,6 @@ class InternalHttpAsyncClient extends Cl
         this.defaultConfig = defaultConfig;
         this.reactorThread = threadFactory.newThread(new Runnable() {
 
-            @Override
             public void run() {
                 doExecute();
             }