This is an automated email from the ASF dual-hosted git repository. jochen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git
commit 24eff9bcd1d3a4414f7faee681a00089d821c2f2 Author: Jochen Wiedmann <jochen.wiedm...@gmail.com> AuthorDate: Mon May 25 21:08:31 2020 +0200 Minor Javadoc fixes. --- .../java/org/apache/commons/fileupload2/impl/FileItemStreamImpl.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/fileupload2/impl/FileItemStreamImpl.java b/src/main/java/org/apache/commons/fileupload2/impl/FileItemStreamImpl.java index a4db26b..1d3ec52 100644 --- a/src/main/java/org/apache/commons/fileupload2/impl/FileItemStreamImpl.java +++ b/src/main/java/org/apache/commons/fileupload2/impl/FileItemStreamImpl.java @@ -75,12 +75,15 @@ public class FileItemStreamImpl implements FileItemStream { /** * Creates a new instance. * + * @param pFileItemIterator The {@link FileItemIteratorImpl iterator}, which returned this file + * item. * @param pName The items file name, or null. * @param pFieldName The items field name. * @param pContentType The items content type, or null. * @param pFormField Whether the item is a form field. * @param pContentLength The items content length, if known, or -1 * @throws IOException Creating the file item failed. + * @throws FileUploadException Parsing the incoming data stream failed. */ public FileItemStreamImpl(FileItemIteratorImpl pFileItemIterator, String pName, String pFieldName, String pContentType, boolean pFormField,