This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 1.x in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git
commit 3cf3a7fb4a4d082772e4c26c7a90c69465e934ff Author: Mark Thomas <ma...@apache.org> AuthorDate: Fri Sep 15 15:24:52 2023 +0100 filesystem -> file system --- src/main/java/org/apache/commons/fileupload/DefaultFileItem.java | 2 +- src/main/java/org/apache/commons/fileupload/FileItem.java | 4 ++-- src/main/java/org/apache/commons/fileupload/FileItemStream.java | 4 ++-- .../java/org/apache/commons/fileupload/disk/DiskFileItem.java | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/apache/commons/fileupload/DefaultFileItem.java b/src/main/java/org/apache/commons/fileupload/DefaultFileItem.java index bc18ff88..41952970 100644 --- a/src/main/java/org/apache/commons/fileupload/DefaultFileItem.java +++ b/src/main/java/org/apache/commons/fileupload/DefaultFileItem.java @@ -48,7 +48,7 @@ public class DefaultFileItem * {@code null} if not specified. * @param isFormField Whether or not this item is a plain form field, as * opposed to a file upload. - * @param fileName The original file name in the user's filesystem, or + * @param fileName The original file name in the user's file system, or * {@code null} if not specified. * @param sizeThreshold The threshold, in bytes, below which items will be * retained in memory and above which they will be diff --git a/src/main/java/org/apache/commons/fileupload/FileItem.java b/src/main/java/org/apache/commons/fileupload/FileItem.java index b90322d4..bf423515 100644 --- a/src/main/java/org/apache/commons/fileupload/FileItem.java +++ b/src/main/java/org/apache/commons/fileupload/FileItem.java @@ -69,12 +69,12 @@ public interface FileItem extends FileItemHeadersSupport { String getContentType(); /** - * Returns the original file name in the client's filesystem, as provided by + * Returns the original file name in the client's file system, as provided by * the browser (or other client software). In most cases, this will be the * base file name, without path information. However, some clients, such as * the Opera browser, do include path information. * - * @return The original file name in the client's filesystem. + * @return The original file name in the client's file system. * @throws InvalidFileNameException The file name contains a NUL character, * which might be an indicator of a security attack. If you intend to * use the file name anyways, catch the exception and use diff --git a/src/main/java/org/apache/commons/fileupload/FileItemStream.java b/src/main/java/org/apache/commons/fileupload/FileItemStream.java index fa831b60..828a6c6c 100644 --- a/src/main/java/org/apache/commons/fileupload/FileItemStream.java +++ b/src/main/java/org/apache/commons/fileupload/FileItemStream.java @@ -73,12 +73,12 @@ public interface FileItemStream extends FileItemHeadersSupport { String getContentType(); /** - * Returns the original file name in the client's filesystem, as provided by + * Returns the original file name in the client's file system, as provided by * the browser (or other client software). In most cases, this will be the * base file name, without path information. However, some clients, such as * the Opera browser, do include path information. * - * @return The original file name in the client's filesystem. + * @return The original file name in the client's file system. */ String getName(); 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 06b6f6cd..3e50201b 100644 --- a/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java +++ b/src/main/java/org/apache/commons/fileupload/disk/DiskFileItem.java @@ -111,7 +111,7 @@ public class DiskFileItem private boolean isFormField; /** - * The original file name in the user's filesystem. + * The original file name in the user's file system. */ private final String fileName; @@ -168,7 +168,7 @@ public class DiskFileItem * {@code null} if not specified. * @param isFormField Whether or not this item is a plain form field, as * opposed to a file upload. - * @param fileName The original file name in the user's filesystem, or + * @param fileName The original file name in the user's file system, or * {@code null} if not specified. * @param sizeThreshold The threshold, in bytes, below which items will be * retained in memory and above which they will be @@ -240,9 +240,9 @@ public class DiskFileItem } /** - * Returns the original file name in the client's filesystem. + * Returns the original file name in the client's file system. * - * @return The original file name in the client's filesystem. + * @return The original file name in the client's file system. * @throws org.apache.commons.fileupload.InvalidFileNameException The file name contains a NUL character, * which might be an indicator of a security attack. If you intend to * use the file name anyways, catch the exception and use