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:14:30 UTC

svn commit: r1069718 - in /cxf/branches/2.3.x-fixes: ./ rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java

Author: ningjiang
Date: Fri Feb 11 09:14:30 2011
New Revision: 1069718

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

........
  r1069716 | ningjiang | 2011-02-11 17:01:19 +0800 (Fri, 11 Feb 2011) | 1 line
  
  Fixed the test error of SecurityPolicyTest
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Feb 11 09:14:30 2011
@@ -1 +1 @@
-/cxf/trunk:1068320,1068337,1068525,1068867,1068877,1069249,1069318,1069492,1069500
+/cxf/trunk:1068320,1068337,1068525,1068867,1068877,1069249,1069318,1069492,1069500,1069716

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

Modified: cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java?rev=1069718&r1=1069717&r2=1069718&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java (original)
+++ cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java Fri Feb 11 09:14:30 2011
@@ -52,7 +52,7 @@ public class LoggingInInterceptor extend
         limit = lim;
     }
     public LoggingInInterceptor(String id, int lim) {
-        this(Phase.RECEIVE, id);
+        this(id, Phase.RECEIVE);
         limit = lim;
     }
 
@@ -61,7 +61,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;
     }