You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by jo...@apache.org on 2020/05/25 19:08:52 UTC

[commons-fileupload] branch master updated (c27d4d1 -> 24eff9b)

This is an automated email from the ASF dual-hosted git repository.

jochen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git.


    from c27d4d1  Changelog update.
     new 6aef6ca  fix typo
     new 24eff9b  Minor Javadoc fixes.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CONTRIBUTING.md                                                        | 2 +-
 .../java/org/apache/commons/fileupload2/impl/FileItemStreamImpl.java   | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)


[commons-fileupload] 01/02: fix typo

Posted by jo...@apache.org.
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 6aef6caeca8012c05e2f9776ad12131cb069b0f4
Author: XenoAmess <xe...@gmail.com>
AuthorDate: Tue May 26 01:44:08 2020 +0800

    fix typo
---
 CONTRIBUTING.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 34d8904..cb5d995 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -50,7 +50,7 @@ Getting Started
 
 + Make sure you have a [JIRA account](https://issues.apache.org/jira/).
 + Make sure you have a [GitHub account](https://github.com/signup/free).
-+ If you're planning to implement a new feature it makes sense to discuss you're changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons FileUpload's scope.
++ If you're planning to implement a new feature it makes sense to discuss your changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons FileUpload's scope.
 + Submit a ticket for your issue, assuming one does not already exist.
   + Clearly describe the issue including steps to reproduce when it is a bug.
   + Make sure you fill in the earliest version that you know has the issue.


[commons-fileupload] 02/02: Minor Javadoc fixes.

Posted by jo...@apache.org.
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 <jo...@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,