Skip to content

Commit 3340c35

Browse files
committed
Checkstyle: '+' should be on the previous line.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1380011 13f79535-47bb-0310-9956-ffa450edef68
1 parent f2e7938 commit 3340c35

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/codec/binary/BaseNCodec.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ static class Context {
9898
@SuppressWarnings("boxing") // OK to ignore boxing here
9999
@Override
100100
public String toString() {
101-
return String.format("%s[buffer=%s, currentLinePos=%s, eof=%s, ibitWorkArea=%s, lbitWorkArea=%s,"
102-
+ "modulus=%s, pos=%s, readPos=%s]", this.getClass().getSimpleName(), buffer, currentLinePos, eof,
101+
return String.format("%s[buffer=%s, currentLinePos=%s, eof=%s, ibitWorkArea=%s, lbitWorkArea=%s," +
102+
"modulus=%s, pos=%s, readPos=%s]", this.getClass().getSimpleName(), buffer, currentLinePos, eof,
103103
ibitWorkArea, lbitWorkArea, modulus, pos, readPos);
104104
}
105105
}

0 commit comments

Comments
 (0)