Author: gmazza
Date: Thu Feb 10 15:46:09 2011
New Revision: 1069434
URL: http://svn.apache.org/viewvc?rev=1069434&view=rev
Log:
Fixed parameters sent to two argument constructor.
Modified:
cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/interceptor/LoggingInInterceptor.java
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=1069434&r1=1069433&r2=1069434&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
Thu Feb 10 15:46:09 2011
@@ -34,7 +34,6 @@ import org.apache.cxf.phase.Phase;
*/
@NoJSR250Annotations
public class LoggingInInterceptor extends AbstractLoggingInterceptor {
-
public LoggingInInterceptor() {
super(Phase.RECEIVE);
@@ -43,8 +42,9 @@ public class LoggingInInterceptor extend
public LoggingInInterceptor(String phase) {
super(phase);
}
+
public LoggingInInterceptor(String id, String phase) {
- super(id, id);
+ super(id, phase);
}
public LoggingInInterceptor(int lim) {