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

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


The following commit(s) were added to refs/heads/1.x by this push:
     new 42992996 Javadoc
42992996 is described below

commit 4299299673c62e0fb3a4473eca825fd97168212e
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Mar 21 09:28:22 2026 -0700

    Javadoc
---
 src/main/java/org/apache/commons/fileupload/RequestContext.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/fileupload/RequestContext.java 
b/src/main/java/org/apache/commons/fileupload/RequestContext.java
index 784e822e..92075418 100644
--- a/src/main/java/org/apache/commons/fileupload/RequestContext.java
+++ b/src/main/java/org/apache/commons/fileupload/RequestContext.java
@@ -29,14 +29,14 @@ import java.io.InputStream;
 public interface RequestContext {
 
     /**
-     * Retrieve the character encoding for the request.
+     * Gets the character encoding for the request.
      *
      * @return The character encoding for the request.
      */
     String getCharacterEncoding();
 
     /**
-     * Retrieve the content length of the request.
+     * Gets the content length of the request.
      *
      * @return The content length of the request.
      * @deprecated 1.3 Use {@link UploadContext#contentLength()} instead
@@ -45,14 +45,14 @@ public interface RequestContext {
     int getContentLength();
 
     /**
-     * Retrieve the content type of the request.
+     * Gets the content type of the request.
      *
      * @return The content type of the request.
      */
     String getContentType();
 
     /**
-     * Retrieve the input stream for the request.
+     * Gets the input stream for the request.
      *
      * @return The input stream for the request.
      * @throws IOException if a problem occurs.

Reply via email to