This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-codec.git
commit 66bbba913491a89e75fb66e3df9a4dc8710ee699 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jul 18 21:40:58 2025 -0400 Fomat nits --- src/main/java/org/apache/commons/codec/binary/StringUtils.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/codec/binary/StringUtils.java b/src/main/java/org/apache/commons/codec/binary/StringUtils.java index 6c110eb7..5c741d36 100644 --- a/src/main/java/org/apache/commons/codec/binary/StringUtils.java +++ b/src/main/java/org/apache/commons/codec/binary/StringUtils.java @@ -28,7 +28,9 @@ import org.apache.commons.codec.CharEncoding; * Converts String to and from bytes using the encodings required by the Java specification. These encodings are * specified in standard {@link Charset}. * - * <p>This class is immutable and thread-safe.</p> + * <p> + * This class is immutable and thread-safe. + * </p> * * @see CharEncoding * @see Charset @@ -265,8 +267,7 @@ public class StringUtils { return getBytes(string, StandardCharsets.UTF_8); } - private static IllegalStateException newIllegalStateException(final String charsetName, - final UnsupportedEncodingException e) { + private static IllegalStateException newIllegalStateException(final String charsetName, final UnsupportedEncodingException e) { return new IllegalStateException(charsetName + ": " + e); }