Author: ggregory
Date: Tue Sep 4 12:16:22 2012
New Revision: 1380589
URL: http://svn.apache.org/viewvc?rev=1380589&view=rev
Log:
toString format.
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=1380589&r1=1380588&r2=1380589&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
Tue Sep 4 12:16:22 2012
@@ -98,7 +98,7 @@ 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," +
+ 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);
}