This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch 1.x in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git
commit b536dd26ec105ab21f5588da7007abbd756a9adf Author: Gary Gregory <[email protected]> AuthorDate: Sun Jan 4 12:44:34 2026 -0500 Javadoc Add an empty line before a Javadoc comment --- src/main/java/org/apache/commons/fileupload/RFC2231Utility.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/fileupload/RFC2231Utility.java b/src/main/java/org/apache/commons/fileupload/RFC2231Utility.java index 641f2be3..8375f878 100644 --- a/src/main/java/org/apache/commons/fileupload/RFC2231Utility.java +++ b/src/main/java/org/apache/commons/fileupload/RFC2231Utility.java @@ -37,18 +37,22 @@ final class RFC2231Utility { * Percent character '{@value}'. */ private static final char PERCENT = '%'; + /** * The Hexadecimal values char array. */ private static final char[] HEX_DIGITS = "0123456789ABCDEF".toCharArray(); + /** * The Hexadecimal representation of 127. */ private static final byte MASK = 0x7f; + /** * The Hexadecimal representation of 128. */ private static final int MASK_128 = 0x80; + /** * The Hexadecimal decode value. */
