Author: ajaypaibir
Date: Thu Jul 5 07:24:01 2007
New Revision: 553517
URL: http://svn.apache.org/viewvc?view=rev&rev=553517
Log:
Fix compilation failure due to replacing AbstractPhaseInterceptor.setPhase with
a ctor.
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/colocated/src/demo/colocated/common/ThrowFaultInterceptor.java
Modified:
incubator/cxf/trunk/distribution/src/main/release/samples/colocated/src/demo/colocated/common/ThrowFaultInterceptor.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/colocated/src/demo/colocated/common/ThrowFaultInterceptor.java?view=diff&rev=553517&r1=553516&r2=553517
==============================================================================
---
incubator/cxf/trunk/distribution/src/main/release/samples/colocated/src/demo/colocated/common/ThrowFaultInterceptor.java
(original)
+++
incubator/cxf/trunk/distribution/src/main/release/samples/colocated/src/demo/colocated/common/ThrowFaultInterceptor.java
Thu Jul 5 07:24:01 2007
@@ -28,8 +28,7 @@
public class ThrowFaultInterceptor extends AbstractPhaseInterceptor<Message> {
public ThrowFaultInterceptor() {
- super();
- setPhase(Phase.PREPARE_SEND);
+ super(Phase.PREPARE_SEND);
}
public void handleMessage(Message message) throws Fault {