Skip to content

Commit cb6755f

Browse files
committed
Checkstyle
1 parent 645ac78 commit cb6755f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

commons-fileupload2-portlet/src/main/java/org/apache/commons/fileupload2/portlet/JavaxPortletFileUpload.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17+
1718
package org.apache.commons.fileupload2.portlet;
1819

1920
import java.io.IOException;
@@ -33,8 +34,8 @@
3334
* High level API for processing file uploads.
3435
* <p>
3536
* This class handles multiple files per single HTML widget, sent using {@code multipart/mixed} encoding type, as specified by
36-
* <a href="https://www.ietf.org/rfc/rfc1867.txt">RFC 1867</a>. Use {@link JavaxServletFileUpload#parseRequest(javax.servlet.http.HttpServletRequest)} to acquire
37-
* a list of {@link FileItem}s associated with a given HTML widget.
37+
* <a href="https://www.ietf.org/rfc/rfc1867.txt">RFC 1867</a>. Use {@link JavaxServletFileUpload#parseRequest(javax.servlet.http.HttpServletRequest)} to
38+
* acquire a list of {@link FileItem}s associated with a given HTML widget.
3839
* </p>
3940
* <p>
4041
* How the data for individual parts is stored is determined by the factory used to create them; a given part may be in memory, on disk, or somewhere else.
@@ -111,5 +112,4 @@ public Map<String, List<I>> parseParameterMap(final ActionRequest request) throw
111112
public List<I> parseRequest(final ActionRequest request) throws FileUploadException {
112113
return parseRequest(new JavaxPortletRequestContext(request));
113114
}
114-
115115
}

0 commit comments

Comments
 (0)