You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ff...@apache.org on 2009/03/19 04:33:25 UTC

svn commit: r755822 - in /cxf/branches/2.0.x-fixes: ./ rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java

Author: ffang
Date: Thu Mar 19 03:33:25 2009
New Revision: 755822

URL: http://svn.apache.org/viewvc?rev=755822&view=rev
Log:
Merged revisions 755519 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/branches/2.1.x-fixes

................
  r755519 | ffang | 2009-03-18 17:06:40 +0800 (Wed, 18 Mar 2009) | 9 lines
  
  Merged revisions 755498 via svnmerge from 
  https://svn.apache.org/repos/asf/cxf/trunk
  
  ........
    r755498 | ffang | 2009-03-18 15:18:03 +0800 (Wed, 18 Mar 2009) | 1 line
    
    [CXF-2115]refactor JBIConduitOutputStream exception handle
  ........
................

Modified:
    cxf/branches/2.0.x-fixes/   (props changed)
    cxf/branches/2.0.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java

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

Modified: cxf/branches/2.0.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.0.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java?rev=755822&r1=755821&r2=755822&view=diff
==============================================================================
--- cxf/branches/2.0.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java (original)
+++ cxf/branches/2.0.x-fixes/rt/transports/jbi/src/main/java/org/apache/cxf/transport/jbi/JBIConduitOutputStream.java Thu Mar 19 03:33:25 2009
@@ -162,8 +162,7 @@
         } catch (IOException e) {
             throw e;
         } catch (Exception e) {
-            e.printStackTrace();
-            new IOException(e.toString());
+            throw new RuntimeException(e.toString());
         }
     }