Author: martinc
Date: Fri Dec  2 22:01:02 2005
New Revision: 351899

URL: http://svn.apache.org/viewcvs?rev=351899&view=rev
Log:
Make inner exception classes static, which they should have been all along.

Modified:
    
jakarta/commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/MultipartStream.java

Modified: 
jakarta/commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/MultipartStream.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/MultipartStream.java?rev=351899&r1=351898&r2=351899&view=diff
==============================================================================
--- 
jakarta/commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/MultipartStream.java
 (original)
+++ 
jakarta/commons/proper/fileupload/trunk/src/java/org/apache/commons/fileupload/MultipartStream.java
 Fri Dec  2 22:01:02 2005
@@ -721,7 +721,7 @@
      * Thrown to indicate that the input stream fails to follow the
      * required syntax.
      */
-    public class MalformedStreamException
+    public static class MalformedStreamException
         extends IOException {
         /**
          * Constructs a <code>MalformedStreamException</code> with no
@@ -746,7 +746,7 @@
     /**
      * Thrown upon attempt of setting an invalid boundary token.
      */
-    public class IllegalBoundaryException
+    public static class IllegalBoundaryException
         extends IOException {
         /**
          * Constructs an <code>IllegalBoundaryException</code> with no



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to