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 8a5715d1 Comment: Remove unnecessary Latin acronym 8a5715d1 is described below commit 8a5715d1fe1d1aa4e1c192dcf406e63194d020d4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Mar 14 10:05:44 2025 -0400 Comment: Remove unnecessary Latin acronym --- .../apache/commons/fileupload2/core/FileItemInputIteratorImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemInputIteratorImpl.java b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemInputIteratorImpl.java index cde67f2f..83fdfaaa 100644 --- a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemInputIteratorImpl.java +++ b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/FileItemInputIteratorImpl.java @@ -254,14 +254,14 @@ class FileItemInputIteratorImpl implements FileItemInputIterator { : contentLengthInt; // CHECKSTYLE:ON // @formatter:on - final InputStream inputStream; // N.B. this is eventually closed in MultipartInput processing + final InputStream inputStream; // This is eventually closed in MultipartInput processing if (sizeMax >= 0) { if (requestSize != -1 && requestSize > sizeMax) { throw new FileUploadSizeException( String.format("the request was rejected because its size (%s) exceeds the configured maximum (%s)", requestSize, sizeMax), sizeMax, requestSize); } - // N.B. this is eventually closed in MultipartInput processing + // This is eventually closed in MultipartInput processing inputStream = new BoundedInputStream(requestContext.getInputStream(), sizeMax) { @Override protected void onMaxLength(final long maxLen, final long count) throws IOException {