You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by mm...@apache.org on 2007/06/15 07:37:12 UTC

svn commit: r547536 - /incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/interceptor/FaultHandlingInterceptor.java

Author: mmao
Date: Thu Jun 14 22:37:11 2007
New Revision: 547536

URL: http://svn.apache.org/viewvc?view=rev&rev=547536
Log:
* No output during tests


Modified:
    incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/interceptor/FaultHandlingInterceptor.java

Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/interceptor/FaultHandlingInterceptor.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/interceptor/FaultHandlingInterceptor.java?view=diff&rev=547536&r1=547535&r2=547536
==============================================================================
--- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/interceptor/FaultHandlingInterceptor.java (original)
+++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/interceptor/FaultHandlingInterceptor.java Thu Jun 14 22:37:11 2007
@@ -39,7 +39,6 @@
     
     public synchronized void handleMessage(Message message) throws Fault {
         FaultMode mode = MessageUtils.getFaultMode(message);
-        System.out.println("FaultMode: " + mode);
         if (null != mode) {
             Throwable cause = message.getContent(Exception.class).getCause();