File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/main/java/org/apache/commons/codec/binary Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments