You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2009/07/22 12:56:53 UTC

svn commit: r796664 - /httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/nio/protocol/TestTruncatedChunks.java

Author: sebb
Date: Wed Jul 22 10:56:53 2009
New Revision: 796664

URL: http://svn.apache.org/viewvc?rev=796664&view=rev
Log:
Fix Eclipse warnings

Modified:
    httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/nio/protocol/TestTruncatedChunks.java

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/nio/protocol/TestTruncatedChunks.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/nio/protocol/TestTruncatedChunks.java?rev=796664&r1=796663&r2=796664&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/nio/protocol/TestTruncatedChunks.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/nio/protocol/TestTruncatedChunks.java Wed Jul 22 10:56:53 2009
@@ -136,6 +136,7 @@
             this.lineBuffer = new CharArrayBuffer(16);
         }
 
+        @Override
         public void complete() throws IOException {
             this.completed = true;
         }
@@ -162,7 +163,7 @@
             return chunk;
         }
         
-    };
+    }
 
     static class CustomServerIOEventDispatch extends DefaultServerIOEventDispatch {