Author: dkulp
Date: Wed Mar 26 19:26:43 2008
New Revision: 641692

URL: http://svn.apache.org/viewvc?rev=641692&view=rev
Log:
More fixes

Modified:
    
incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java

Modified: 
incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java?rev=641692&r1=641691&r2=641692&view=diff
==============================================================================
--- 
incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java
 (original)
+++ 
incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java
 Wed Mar 26 19:26:43 2008
@@ -36,7 +36,7 @@
     }
 
     public static int copy(final InputStream input, final OutputStream output)
-            throws IOException {
+        throws IOException {
         return copy(input, output, DEFAULT_BUFFER_SIZE);
     }
 
@@ -95,7 +95,7 @@
     }
 
     public static String toString(final InputStream input, int bufferSize)
-            throws IOException {
+        throws IOException {
 
         int avail = input.available();
         if (avail > bufferSize) {
@@ -129,7 +129,7 @@
     }
 
     public static String readStringFromStream(InputStream in)
-            throws IOException {
+        throws IOException {
 
         StringBuilder sb = new StringBuilder(1024);
 
@@ -151,7 +151,7 @@
      * @throws IOException
      */
     public static ByteArrayInputStream loadIntoBAIS(InputStream in)
-            throws IOException {
+        throws IOException {
         int i = in.available();
         if (i < DEFAULT_BUFFER_SIZE) {
             i = DEFAULT_BUFFER_SIZE;


Reply via email to