You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2008/03/27 20:07:00 UTC

svn commit: r641951 - in /incubator/cxf/branches/2.0.x-fixes: ./ common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java

Author: dkulp
Date: Thu Mar 27 12:06:58 2008
New Revision: 641951

URL: http://svn.apache.org/viewvc?rev=641951&view=rev
Log:
Merged revisions 641692 via svnmerge from 
https://svn.apache.org/repos/asf/incubator/cxf/trunk

........
  r641692 | dkulp | 2008-03-26 22:26:43 -0400 (Wed, 26 Mar 2008) | 2 lines
  
  More fixes
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java

Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java?rev=641951&r1=641950&r2=641951&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/common/common/src/main/java/org/apache/cxf/helpers/IOUtils.java Thu Mar 27 12:06:58 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;