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


The following commit(s) were added to refs/heads/1.x by this push:
     new 7f3a9e17 Normalize Javadoc @param formatting
7f3a9e17 is described below

commit 7f3a9e178b3f4ac09fa41e57e300623f8e92a0d0
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 16 11:58:45 2024 -0400

    Normalize Javadoc @param formatting
---
 src/main/java/org/apache/commons/fileupload/ParameterParser.java      | 4 ++--
 .../java/org/apache/commons/fileupload/util/mime/RFC2231Utility.java  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/fileupload/ParameterParser.java 
b/src/main/java/org/apache/commons/fileupload/ParameterParser.java
index 8674f4b7..4ce5275a 100644
--- a/src/main/java/org/apache/commons/fileupload/ParameterParser.java
+++ b/src/main/java/org/apache/commons/fileupload/ParameterParser.java
@@ -283,8 +283,8 @@ public class ParameterParser {
      *
      * @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/src/main/java/org/apache/commons/fileupload/util/mime/RFC2231Utility.java 
b/src/main/java/org/apache/commons/fileupload/util/mime/RFC2231Utility.java
index 37167c3b..323c774e 100644
--- a/src/main/java/org/apache/commons/fileupload/util/mime/RFC2231Utility.java
+++ b/src/main/java/org/apache/commons/fileupload/util/mime/RFC2231Utility.java
@@ -102,7 +102,7 @@ public final class RFC2231Utility {
      * <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>}
+     * @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.
@@ -125,7 +125,7 @@ public final class RFC2231Utility {
 
     /**
      * Convert {@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) {

Reply via email to