You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/06/06 14:29:21 UTC

[commons-fileupload] 09/09: Javadoc

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 <ga...@gmail.com>
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