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/04/03 03:19:05 UTC

[commons-fileupload] 02/05: 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 3166c8048ea322837cbfd8aec5f6802de12cd8a1
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Apr 2 23:12:03 2023 -0400

    Javadoc
---
 .../commons/fileupload2/servlet/ServletRequestContext.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main/java/org/apache/commons/fileupload2/servlet/ServletRequestContext.java b/src/main/java/org/apache/commons/fileupload2/servlet/ServletRequestContext.java
index a4706c1..7b9ffca 100644
--- a/src/main/java/org/apache/commons/fileupload2/servlet/ServletRequestContext.java
+++ b/src/main/java/org/apache/commons/fileupload2/servlet/ServletRequestContext.java
@@ -27,8 +27,8 @@ import org.apache.commons.fileupload2.FileUploadBase;
 import org.apache.commons.fileupload2.UploadContext;
 
 /**
- * <p>Provides access to the request information needed for a request made to
- * an HTTP servlet.</p>
+ * Provides access to the request information needed for a request made to
+ * an HTTP servlet.
  *
  * @since 1.1
  */
@@ -40,7 +40,7 @@ public class ServletRequestContext implements UploadContext {
     private final HttpServletRequest request;
 
     /**
-     * Construct a context for this request.
+     * Constructs a context for this request.
      *
      * @param request The request to which this context applies.
      */
@@ -49,7 +49,7 @@ public class ServletRequestContext implements UploadContext {
     }
 
     /**
-     * Retrieve the content length of the request.
+     * Gets the content length of the request.
      *
      * @return The content length of the request.
      * @since 1.3
@@ -66,7 +66,7 @@ public class ServletRequestContext implements UploadContext {
     }
 
     /**
-     * Retrieve the character encoding for the request.
+     * Gets the character encoding for the request.
      *
      * @return The character encoding for the request.
      */
@@ -76,7 +76,7 @@ public class ServletRequestContext implements UploadContext {
     }
 
     /**
-     * Retrieve the content type of the request.
+     * Gets the content type of the request.
      *
      * @return The content type of the request.
      */
@@ -86,7 +86,7 @@ public class ServletRequestContext implements UploadContext {
     }
 
     /**
-     * Retrieve the input stream for the request.
+     * Gets the input stream for the request.
      *
      * @return The input stream for the request.
      *