You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by tl...@apache.org on 2006/11/17 09:11:16 UTC

svn commit: r476071 - /incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java

Author: tli
Date: Fri Nov 17 00:11:15 2006
New Revision: 476071

URL: http://svn.apache.org/viewvc?view=rev&rev=476071
Log:
fix bug for stack trace handling

Modified:
    incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java

Modified: incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java?view=diff&rev=476071&r1=476070&r2=476071
==============================================================================
--- incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java (original)
+++ incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java Fri Nov 17 00:11:15 2006
@@ -123,7 +123,7 @@
                     Exception e = msg.getContent(Exception.class);
                     e.setStackTrace(stackTraceList.toArray(stackTraceElement));
                 }
-            }
+            }            
             Node next = exDetail.getNextSibling();
             while (!(next instanceof Element)) {
                 if (next == null) {