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
The following commit(s) were added to refs/heads/master by this push: new 39e6a07 Javadoc: Use "file system" instead of "filesystem". 39e6a07 is described below commit 39e6a07b8c2a03c6600df6c6a676d551610ee9ae Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu May 30 13:53:54 2019 -0400 Javadoc: Use "file system" instead of "filesystem". --- src/main/java/org/apache/commons/fileupload2/DefaultFileItem.java | 2 +- src/main/java/org/apache/commons/fileupload2/FileItem.java | 4 ++-- src/main/java/org/apache/commons/fileupload2/FileItemStream.java | 4 ++-- .../java/org/apache/commons/fileupload2/disk/DiskFileItem.java | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/apache/commons/fileupload2/DefaultFileItem.java b/src/main/java/org/apache/commons/fileupload2/DefaultFileItem.java index dcbe7ca..e537b03 100644 --- a/src/main/java/org/apache/commons/fileupload2/DefaultFileItem.java +++ b/src/main/java/org/apache/commons/fileupload2/DefaultFileItem.java @@ -49,7 +49,7 @@ public class DefaultFileItem * <code>null</code> 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 filename in the user's filesystem, or + * @param fileName The original filename in the user's file system, or * <code>null</code> 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/fileupload2/FileItem.java b/src/main/java/org/apache/commons/fileupload2/FileItem.java index 14478a6..fdbd5af 100644 --- a/src/main/java/org/apache/commons/fileupload2/FileItem.java +++ b/src/main/java/org/apache/commons/fileupload2/FileItem.java @@ -69,12 +69,12 @@ public interface FileItem extends FileItemHeadersSupport { String getContentType(); /** - * Returns the original filename in the client's filesystem, as provided by + * Returns the original filename 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 filename in the client's filesystem. + * @return The original filename 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/fileupload2/FileItemStream.java b/src/main/java/org/apache/commons/fileupload2/FileItemStream.java index 7a331bb..c8100b6 100644 --- a/src/main/java/org/apache/commons/fileupload2/FileItemStream.java +++ b/src/main/java/org/apache/commons/fileupload2/FileItemStream.java @@ -73,12 +73,12 @@ public interface FileItemStream extends FileItemHeadersSupport { String getContentType(); /** - * Returns the original filename in the client's filesystem, as provided by + * Returns the original filename 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 filename in the client's filesystem. + * @return The original filename in the client's file system. */ String getName(); diff --git a/src/main/java/org/apache/commons/fileupload2/disk/DiskFileItem.java b/src/main/java/org/apache/commons/fileupload2/disk/DiskFileItem.java index 6f57eb7..b6d85b2 100644 --- a/src/main/java/org/apache/commons/fileupload2/disk/DiskFileItem.java +++ b/src/main/java/org/apache/commons/fileupload2/disk/DiskFileItem.java @@ -111,7 +111,7 @@ public class DiskFileItem private boolean isFormField; /** - * The original filename in the user's filesystem. + * The original filename in the user's file system. */ private final String fileName; @@ -168,7 +168,7 @@ public class DiskFileItem * <code>null</code> 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 filename in the user's filesystem, or + * @param fileName The original filename in the user's file system, or * <code>null</code> 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 filename in the client's filesystem. + * Returns the original filename in the client's file system. * - * @return The original filename in the client's filesystem. + * @return The original filename in the client's file system. * @throws org.apache.commons.fileupload2.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