Skip to content

Commit 66bbba9

Browse files
committed
Fomat nits
1 parent ed43d2a commit 66bbba9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
* Converts String to and from bytes using the encodings required by the Java specification. These encodings are
2929
* specified in standard {@link Charset}.
3030
*
31-
* <p>This class is immutable and thread-safe.</p>
31+
* <p>
32+
* This class is immutable and thread-safe.
33+
* </p>
3234
*
3335
* @see CharEncoding
3436
* @see Charset
@@ -265,8 +267,7 @@ public static byte[] getBytesUtf8(final String string) {
265267
return getBytes(string, StandardCharsets.UTF_8);
266268
}
267269

268-
private static IllegalStateException newIllegalStateException(final String charsetName,
269-
final UnsupportedEncodingException e) {
270+
private static IllegalStateException newIllegalStateException(final String charsetName, final UnsupportedEncodingException e) {
270271
return new IllegalStateException(charsetName + ": " + e);
271272
}
272273

0 commit comments

Comments
 (0)