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

commit 67a5d724c9ef1ce5821ce096b23b61ccc47f252d
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Feb 8 09:47:51 2026 -0500

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

diff --git a/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java 
b/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java
index f7d5e53a..1936aab6 100644
--- a/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java
+++ b/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java
@@ -422,14 +422,14 @@ public class DiskFileItem implements FileItem {
     }
 
     /**
-     * Creates and returns a {@link java.io.File File} representing a uniquely 
named temporary file in the configured
+     * Creates and returns a {@link File} representing a uniquely named 
temporary file in the configured
      * repository path. The lifetime of the file is tied to the lifetime of 
the {@code FileItem} instance; the file will
      * be deleted when the instance is garbage collected.
      * <p>
      * <strong>Note: Subclasses that override this method must ensure that 
they return the same File each time.</strong>
      * </p>
      *
-     * @return The {@link java.io.File File} to be used for temporary storage.
+     * @return The {@link File} to be used for temporary storage.
      */
     protected File getTempFile() {
         if (tempFile == null) {

Reply via email to