Add license tag line. Remove unused imports. VIVO-222
This commit is contained in:
parent
5b0f8919b7
commit
9f1b9f6beb
1 changed files with 3 additions and 8 deletions
|
@ -1,13 +1,9 @@
|
||||||
package edu.cornell.mannlib.vitro.webapp.filestorage.uploadrequest;
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
||||||
|
|
||||||
import java.io.IOException;
|
package edu.cornell.mannlib.vitro.webapp.filestorage.uploadrequest;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
|
||||||
import org.apache.commons.fileupload.FileItem;
|
|
||||||
import org.apache.commons.fileupload.FileUploadException;
|
|
||||||
import org.apache.commons.fileupload.servlet.ServletFileUpload;
|
import org.apache.commons.fileupload.servlet.ServletFileUpload;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -26,8 +22,7 @@ public class StreamingMultipartHttpServletRequest extends
|
||||||
* to deal with inputs of very large sizes.
|
* to deal with inputs of very large sizes.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public StreamingMultipartHttpServletRequest(HttpServletRequest request)
|
public StreamingMultipartHttpServletRequest(HttpServletRequest request) {
|
||||||
throws IOException{
|
|
||||||
super(request);
|
super(request);
|
||||||
|
|
||||||
//use a file uploader that does not save the files to a temporary directory.
|
//use a file uploader that does not save the files to a temporary directory.
|
||||||
|
|
Loading…
Add table
Reference in a new issue