Skip to content

Commit

Permalink
Normalize Javadoc @param formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jun 16, 2024
1 parent feeece4 commit 7f3a9e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ public Map<String, String> 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public static String stripDelimiter(final String paramName) {
* <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.
Expand All @@ -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) {
Expand Down

0 comments on commit 7f3a9e1

Please sign in to comment.