Author: gmazza
Date: Thu Feb 10 15:43:32 2011
New Revision: 1069432
URL: http://svn.apache.org/viewvc?rev=1069432&view=rev
Log:
Constructor fixed.
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=1069432&r1=1069431&r2=1069432&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
Thu Feb 10 15:43:32 2011
@@ -43,8 +43,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) {