This is an automated email from the ASF dual-hosted git repository.

garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
     new 6876687e Javadoc
6876687e is described below

commit 6876687e440c843b97b009dccbd6bc63b779c9b9
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 09:08:39 2026 -0400

    Javadoc
---
 .../apache/commons/fileupload2/core/AbstractRequestContext.java   | 2 +-
 .../java/org/apache/commons/fileupload2/core/DiskFileItem.java    | 6 +++---
 .../org/apache/commons/fileupload2/core/DiskFileItemFactory.java  | 4 ++--
 .../java/org/apache/commons/fileupload2/core/FileItemFactory.java | 4 ++--
 .../java/org/apache/commons/fileupload2/core/FileItemHeaders.java | 6 +++---
 .../java/org/apache/commons/fileupload2/core/MultipartInput.java  | 4 ++--
 .../java/org/apache/commons/fileupload2/core/ParameterParser.java | 8 ++++----
 7 files changed, 17 insertions(+), 17 deletions(-)

diff --git 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/AbstractRequestContext.java
 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/AbstractRequestContext.java
index 8e08af8c..465ccd49 100644
--- 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/AbstractRequestContext.java
+++ 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/AbstractRequestContext.java
@@ -100,7 +100,7 @@ public abstract class AbstractRequestContext<T> implements 
RequestContext {
     /**
      * Returns a string representation of this object.
      *
-     * @return a string representation of this object.
+     * @return A string representation of this object.
      */
     @Override
     public String toString() {
diff --git 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItem.java
 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItem.java
index 246e71d7..66aa324e 100644
--- 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItem.java
+++ 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItem.java
@@ -130,7 +130,7 @@ public final class DiskFileItem implements 
FileItem<DiskFileItem> {
          * {@link UnsupportedOperationException}.
          * </p>
          *
-         * @return a new instance.
+         * @return A new instance.
          * @throws UnsupportedOperationException if the origin cannot provide 
a Path.
          * @see AbstractOrigin#getReader(Charset)
          */
@@ -207,7 +207,7 @@ public final class DiskFileItem implements 
FileItem<DiskFileItem> {
     /**
      * Constructs a new {@link Builder}.
      *
-     * @return a new {@link Builder}.
+     * @return A new {@link Builder}.
      */
     public static Builder builder() {
         return new Builder();
@@ -647,7 +647,7 @@ public final class DiskFileItem implements 
FileItem<DiskFileItem> {
     /**
      * Returns a string representation of this object.
      *
-     * @return a string representation of this object.
+     * @return A string representation of this object.
      */
     @Override
     public String toString() {
diff --git 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItemFactory.java
 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItemFactory.java
index 7885c184..dbf84f96 100644
--- 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItemFactory.java
+++ 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItemFactory.java
@@ -108,7 +108,7 @@ public final class DiskFileItemFactory implements 
FileItemFactory<DiskFileItem>
          * {@link UnsupportedOperationException}.
          * </p>
          *
-         * @return a new instance.
+         * @return A new instance.
          * @throws UnsupportedOperationException if the origin cannot provide 
a Path.
          * @see AbstractOrigin#getReader(Charset)
          */
@@ -184,7 +184,7 @@ public final class DiskFileItemFactory implements 
FileItemFactory<DiskFileItem>
     /**
      * Constructs a new {@link Builder}.
      *
-     * @return a new {@link Builder}.
+     * @return A new {@link Builder}.
      */
     public static Builder builder() {
         return new Builder();
diff --git 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemFactory.java
 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemFactory.java
index f5e18dd3..1ca1051b 100644
--- 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemFactory.java
+++ 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemFactory.java
@@ -41,7 +41,7 @@ public interface FileItemFactory<I extends FileItem<I>> {
         /**
          * Create a new FileItemHeaders implementation.
          *
-         * @return a new FileItemHeaders implementation.
+         * @return A new FileItemHeaders implementation.
          */
         public static FileItemHeaders newFileItemHeaders() {
             return new FileItemHeadersImpl();
@@ -214,7 +214,7 @@ public interface FileItemFactory<I extends FileItem<I>> {
      * Creates a new AbstractFileItemBuilder.
      *
      * @param <B> The type of AbstractFileItemBuilder.
-     * @return a new AbstractFileItemBuilder.
+     * @return A new AbstractFileItemBuilder.
      */
     <B extends AbstractFileItemBuilder<I, B>> AbstractFileItemBuilder<I, B> 
fileItemBuilder();
 
diff --git 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemHeaders.java
 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemHeaders.java
index f316c3cf..b8788702 100644
--- 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemHeaders.java
+++ 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemHeaders.java
@@ -39,14 +39,14 @@ public interface FileItemHeaders {
      * </p>
      *
      * @param name a {@code String} specifying the header name
-     * @return a {@code String} containing the value of the requested header, 
or {@code null} if the item does not have a header of that name
+     * @return A {@code String} containing the value of the requested header, 
or {@code null} if the item does not have a header of that name
      */
     String getHeader(String name);
 
     /**
      * Gets an {@code Iterator} of all the header names.
      *
-     * @return an {@code Iterator} containing all of the names of headers 
provided with this file item. If the item does not have any headers return an 
empty
+     * @return An {@code Iterator} containing all of the names of headers 
provided with this file item. If the item does not have any headers return an 
empty
      *         {@code Iterator}
      */
     Iterator<String> getHeaderNames();
@@ -58,7 +58,7 @@ public interface FileItemHeaders {
      * </p>
      *
      * @param name a {@code String} specifying the header name
-     * @return an {@code Iterator} containing the values of the requested 
header. If the item does not have any headers of that name, return an empty
+     * @return An {@code Iterator} containing the values of the requested 
header. If the item does not have any headers of that name, return an empty
      *         {@code Iterator}
      */
     Iterator<String> getHeaders(String name);
diff --git 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/MultipartInput.java
 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/MultipartInput.java
index 06b5d1e3..1ae454f5 100644
--- 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/MultipartInput.java
+++ 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/MultipartInput.java
@@ -132,7 +132,7 @@ public final class MultipartInput {
          * {@link UnsupportedOperationException}.
          * </p>
          *
-         * @return a new instance.
+         * @return A new instance.
          * @throws IOException                   if an I/O error occurs.
          * @throws UnsupportedOperationException if the origin cannot provide 
a Path.
          * @see AbstractOrigin#getReader(Charset)
@@ -618,7 +618,7 @@ public final class MultipartInput {
     /**
      * Constructs a new {@link Builder}.
      *
-     * @return a new {@link Builder}.
+     * @return A new {@link Builder}.
      */
     public static Builder builder() {
         return new Builder();
diff --git 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/ParameterParser.java
 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/ParameterParser.java
index 60d1bf92..4a5ccbe2 100644
--- 
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/ParameterParser.java
+++ 
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/ParameterParser.java
@@ -137,7 +137,7 @@ public class ParameterParser {
      *
      * @param charArray the array of characters that contains a sequence of 
name/value pairs
      * @param separator the name/value pairs separator
-     * @return a map of name/value pairs
+     * @return A map of name/value pairs
      */
     public Map<String, String> parse(final char[] charArray, final char 
separator) {
         if (charArray == null) {
@@ -153,7 +153,7 @@ public class ParameterParser {
      * @param offset      the initial offset.
      * @param length      the length.
      * @param separator the name/value pairs separator
-     * @return a map of name/value pairs
+     * @return A map of name/value pairs
      */
     public Map<String, String> parse(final char[] charArray, final int offset, 
final int length, final char separator) {
         if (charArray == null) {
@@ -203,7 +203,7 @@ public class ParameterParser {
      *
      * @param str       the string that contains a sequence of name/value pairs
      * @param separator the name/value pairs separator
-     * @return a map of name/value pairs
+     * @return A map of name/value pairs
      */
     public Map<String, String> parse(final String str, final char separator) {
         if (str == null) {
@@ -218,7 +218,7 @@ public class ParameterParser {
      *
      * @param str        the string that contains a sequence of name/value 
pairs
      * @param separators the name/value pairs separators
-     * @return a map of name/value pairs
+     * @return A map of name/value pairs
      */
     public Map<String, String> parse(final String str, final char[] 
separators) {
         if (separators == null || separators.length == 0) {

Reply via email to