Author: ggregory
Date: Sat Sep  1 15:56:40 2012
New Revision: 1379781

URL: http://svn.apache.org/viewvc?rev=1379781&view=rev
Log:
Checksyle line length <= 120.

Modified:
    
commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java

Modified: 
commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java
URL: 
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java?rev=1379781&r1=1379780&r2=1379781&view=diff
==============================================================================
--- 
commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java
 (original)
+++ 
commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/BaseNCodec.java
 Sat Sep  1 15:56:40 2012
@@ -98,10 +98,9 @@ public abstract class BaseNCodec impleme
         @SuppressWarnings("boxing") // OK to ignore boxing here
         @Override
         public String toString() {
-            return String
-                    .format("%s[buffer=%s, currentLinePos=%s, eof=%s, 
ibitWorkArea=%s, lbitWorkArea=%s, modulus=%s, pos=%s, readPos=%s]",
-                            this.getClass().getSimpleName(), buffer, 
currentLinePos, eof, ibitWorkArea, lbitWorkArea,
-                            modulus, pos, readPos);
+            return String.format("%s[buffer=%s, currentLinePos=%s, eof=%s, 
ibitWorkArea=%s, lbitWorkArea=%s,"
+                    + "modulus=%s, pos=%s, readPos=%s]", 
this.getClass().getSimpleName(), buffer, currentLinePos, eof,
+                    ibitWorkArea, lbitWorkArea, modulus, pos, readPos);
         }
     }
 


Reply via email to