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
commit e6be07819a804bbf4d218778b086b4edf0a69c8e Author: Gary Gregory <[email protected]> AuthorDate: Tue Jun 6 10:29:07 2023 -0400 Javadoc --- .../main/java/org/apache/commons/fileupload2/ParameterParser.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/ParameterParser.java b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/ParameterParser.java index ad6d804..cd65201 100644 --- a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/ParameterParser.java +++ b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/ParameterParser.java @@ -133,7 +133,7 @@ public class ParameterParser { } /** - * Extracts a map of name/value pairs from the given array of characters. Names are expected to be unique. + * 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 separator the name/value pairs separator @@ -147,7 +147,7 @@ public class ParameterParser { } /** - * Extracts a map of name/value pairs from the given array of characters. Names are expected to be unique. + * 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. @@ -197,7 +197,7 @@ public class ParameterParser { } /** - * Extracts a map of name/value pairs from the given string. Names are expected to be unique. + * Parses a map of name/value pairs from the given string. Names are expected to be unique. * * @param str the string that contains a sequence of name/value pairs * @param separator the name/value pairs separator @@ -211,7 +211,7 @@ public class ParameterParser { } /** - * Extracts a map of name/value pairs from the given string. Names are expected to be unique. Multiple separators may be specified and the earliest found in + * Parses a map of name/value pairs from the given string. Names are expected to be unique. Multiple separators may be specified and the earliest found in * the input string is used. * * @param str the string that contains a sequence of name/value pairs
