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 2011/06/02 20:30:31 UTC

svn commit: r1130705 - /httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/entity/TestByteArrayEntity.java

Author: olegk
Date: Thu Jun  2 18:30:31 2011
New Revision: 1130705

URL: http://svn.apache.org/viewvc?rev=1130705&view=rev
Log:
Formatting

Modified:
    httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/entity/TestByteArrayEntity.java

Modified: httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/entity/TestByteArrayEntity.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/entity/TestByteArrayEntity.java?rev=1130705&r1=1130704&r2=1130705&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/entity/TestByteArrayEntity.java (original)
+++ httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/entity/TestByteArrayEntity.java Thu Jun  2 18:30:31 2011
@@ -118,8 +118,8 @@ public class TestByteArrayEntity {
     @Test
     public void testWriteToOffLen() throws Exception {
         byte[] bytes = "Message content".getBytes(HTTP.US_ASCII);
-    int off = 8;
-    int len = 7;
+        int off = 8;
+        int len = 7;
         ByteArrayEntity httpentity = new ByteArrayEntity(bytes, off, len);
 
         ByteArrayOutputStream out = new ByteArrayOutputStream();