Author: ggregory
Date: Sun Sep 2 17:42:53 2012
New Revision: 1380011
URL: http://svn.apache.org/viewvc?rev=1380011&view=rev
Log:
Checkstyle: '+' should be on the previous line.
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=1380011&r1=1380010&r2=1380011&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
Sun Sep 2 17:42:53 2012
@@ -98,8 +98,8 @@ 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,
+ 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);
}
}