You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ch...@apache.org on 2006/09/06 19:52:19 UTC

svn commit: r440807 - /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/attachments/BoundaryDelimitedStream.java

Author: chinthaka
Date: Wed Sep  6 10:52:18 2006
New Revision: 440807

URL: http://svn.apache.org/viewvc?view=rev&rev=440807
Log:
- There is no meaning in declaring private methods as final. Fixing it.
-

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/attachments/BoundaryDelimitedStream.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/attachments/BoundaryDelimitedStream.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/attachments/BoundaryDelimitedStream.java?view=diff&rev=440807&r1=440806&r2=440807
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/attachments/BoundaryDelimitedStream.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/attachments/BoundaryDelimitedStream.java Wed Sep  6 10:52:18 2006
@@ -195,12 +195,12 @@
         this.readbufsz = Math.max((boundaryBufLen) * 2, readbufsz);
     }
 
-    private final int readFromStream(final byte[] b)
+    private int readFromStream(final byte[] b)
             throws java.io.IOException {
         return readFromStream(b, 0, b.length);
     }
 
-    private final int readFromStream(
+    private int readFromStream(
             final byte[] b, final int start, final int length)
             throws java.io.IOException {
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org