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-fileupload.git
The following commit(s) were added to refs/heads/master by this push: new 4ea62685 Normalize Javadoc @param formatting new e1ae2a1f Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-fileupload 4ea62685 is described below commit 4ea62685527b21c16668007d335637e4a8bbf7dc Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 16 11:59:22 2024 -0400 Normalize Javadoc @param formatting --- .../java/org/apache/commons/fileupload2/core/ParameterParser.java | 4 ++-- .../main/java/org/apache/commons/fileupload2/core/RFC2231Utils.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/ParameterParser.java b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/ParameterParser.java index a5846b2f..48cacd27 100644 --- a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/ParameterParser.java +++ b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/ParameterParser.java @@ -150,8 +150,8 @@ public class ParameterParser { * Parses a map of name/value pairs from the given array of characters. Names are expected to be unique. * * @param charArray the array of characters that contains a sequence of name/value pairs - * @param offset - the initial offset. - * @param length - the length. + * @param offset the initial offset. + * @param length the length. * @param separator the name/value pairs separator * @return a map of name/value pairs */ diff --git a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/RFC2231Utils.java b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/RFC2231Utils.java index c45d414e..3924f140 100644 --- a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/RFC2231Utils.java +++ b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/RFC2231Utils.java @@ -66,7 +66,7 @@ final class RFC2231Utils { * * <b>Eg 3.</b> {@code UTF-8''%c2%a3%20and%20%e2%82%ac%20rates} will be decoded to {@code £ and € rates}. * - * @param encodedText - Text to be decoded has a format of {@code <charset>'<language>'<encoded_value>} and ASCII only + * @param encodedText Text to be decoded has a format of {@code <charset>'<language>'<encoded_value>} and ASCII only * @return Decoded text based on charset encoding * @throws UnsupportedEncodingException The requested character set wasn't found. */ @@ -89,7 +89,7 @@ final class RFC2231Utils { /** * Converts {@code text} to their corresponding Hex value. * - * @param text - ASCII text input + * @param text ASCII text input * @return Byte array of characters decoded from ASCII table */ private static byte[] fromHex(final String text) {