From 7f3a9e178b3f4ac09fa41e57e300623f8e92a0d0 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 16 Jun 2024 11:58:45 -0400 Subject: [PATCH] Normalize Javadoc @param formatting --- .../java/org/apache/commons/fileupload/ParameterParser.java | 4 ++-- .../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 8674f4b762..4ce5275a2c 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 Map parse(final char[] charArray, final char separator) { * * @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 37167c3be5..323c774e87 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 static String stripDelimiter(final String paramName) { * Eg 3. {@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 ''} + * @param encodedText Text to be decoded has a format of {@code ''} * and ASCII only * @return Decoded text based on charset encoding * @throws UnsupportedEncodingException The requested character set wasn't found. @@ -125,7 +125,7 @@ public static String decodeText(final String encodedText) throws UnsupportedEnco /** * 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) {