You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2016/08/23 22:03:41 UTC

svn commit: r1757439 - /httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/http/integration/TestTruncatedChunks.java

Author: ggregory
Date: Tue Aug 23 22:03:41 2016
New Revision: 1757439

URL: http://svn.apache.org/viewvc?rev=1757439&view=rev
Log:
Use final.

Modified:
    httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/http/integration/TestTruncatedChunks.java

Modified: httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/http/integration/TestTruncatedChunks.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/http/integration/TestTruncatedChunks.java?rev=1757439&r1=1757438&r2=1757439&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/http/integration/TestTruncatedChunks.java (original)
+++ httpcomponents/httpcore/trunk/httpcore5/src/test/java/org/apache/hc/core5/http/integration/TestTruncatedChunks.java Tue Aug 23 22:03:41 2016
@@ -116,7 +116,7 @@ public class TestTruncatedChunks extends
 
         @Override
         public int write(final ByteBuffer src) throws IOException {
-            int chunk;
+            final int chunk;
             if (!this.done) {
                 this.lineBuffer.clear();
                 this.lineBuffer.append(Integer.toHexString(GARBAGE.length * 10));