You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2011/02/11 10:01:20 UTC

svn commit: r1069716 - /cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java

Author: ningjiang
Date: Fri Feb 11 09:01:19 2011
New Revision: 1069716

URL: http://svn.apache.org/viewvc?rev=1069716&view=rev
Log:
Fixed the test error of SecurityPolicyTest

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

Modified: cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java?rev=1069716&r1=1069715&r2=1069716&view=diff
==============================================================================
--- cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java (original)
+++ cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java Fri Feb 11 09:01:19 2011
@@ -53,7 +53,7 @@ public class LoggingInInterceptor extend
         limit = lim;
     }
     public LoggingInInterceptor(String id, int lim) {
-        this(Phase.RECEIVE, id);
+        this(id, Phase.RECEIVE);
         limit = lim;
     }
 
@@ -62,7 +62,7 @@ public class LoggingInInterceptor extend
         this.writer = w;
     }
     public LoggingInInterceptor(String id, PrintWriter w) {
-        this(Phase.RECEIVE, id);
+        this(id, Phase.RECEIVE);
         this.writer = w;
     }