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;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
package edu.cornell.mannlib.vitro.webapp.filestorage.uploadrequest;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
|
||||
import org.apache.commons.fileupload.FileItem;
|
||||
import org.apache.commons.fileupload.FileUploadException;
|
||||
import org.apache.commons.fileupload.servlet.ServletFileUpload;
|
||||
|
||||
/**
|
||||
|
@ -26,8 +22,7 @@ public class StreamingMultipartHttpServletRequest extends
|
|||
* to deal with inputs of very large sizes.
|
||||
*
|
||||
*/
|
||||
public StreamingMultipartHttpServletRequest(HttpServletRequest request)
|
||||
throws IOException{
|
||||
public StreamingMultipartHttpServletRequest(HttpServletRequest request) {
|
||||
super(request);
|
||||
|
||||
//use a file uploader that does not save the files to a temporary directory.
|
||||
|
|
Loading…
Add table
Reference in a new issue