joerg 2004/03/11 10:21:48
Modified: src/java/org/apache/cocoon/servlet/multipart
MultipartParser.java
Log:
removed unused variable and import
Revision Changes Path
1.8 +1 -5
cocoon-2.1/src/java/org/apache/cocoon/servlet/multipart/MultipartParser.java
Index: MultipartParser.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/java/org/apache/cocoon/servlet/multipart/MultipartParser.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- MultipartParser.java 11 Mar 2004 15:32:41 -0000 1.7
+++ MultipartParser.java 11 Mar 2004 18:21:48 -0000 1.8
@@ -30,8 +30,6 @@
import javax.servlet.http.HttpServletRequest;
-import org.apache.avalon.excalibur.io.IOUtil;
-
/**
* This class is used to implement a multipart request wrapper.
* It will parse the http post stream and and fill it's hashtable with
values.
@@ -46,8 +44,6 @@
public class MultipartParser {
private final static int FILE_BUFFER_SIZE = 4096;
-
- private final static int INLINE_BUFFER_SIZE = 256;
private static final int MAX_BOUNDARY_SIZE = 128;