Author: dkulp
Date: Thu Jul  5 07:25:32 2007
New Revision: 553518

URL: http://svn.apache.org/viewvc?view=rev&rev=553518
Log:
Fix stream interceptor compile issue

Modified:
    
incubator/cxf/trunk/distribution/src/main/release/samples/streamInterceptor/src/demo/stream/interceptor/StreamInterceptor.java

Modified: 
incubator/cxf/trunk/distribution/src/main/release/samples/streamInterceptor/src/demo/stream/interceptor/StreamInterceptor.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/streamInterceptor/src/demo/stream/interceptor/StreamInterceptor.java?view=diff&rev=553518&r1=553517&r2=553518
==============================================================================
--- 
incubator/cxf/trunk/distribution/src/main/release/samples/streamInterceptor/src/demo/stream/interceptor/StreamInterceptor.java
 (original)
+++ 
incubator/cxf/trunk/distribution/src/main/release/samples/streamInterceptor/src/demo/stream/interceptor/StreamInterceptor.java
 Thu Jul  5 07:25:32 2007
@@ -34,8 +34,7 @@
 public class StreamInterceptor extends AbstractPhaseInterceptor<Message> {
 
     public StreamInterceptor() {
-        super();
-        setPhase(Phase.PRE_STREAM);
+        super(Phase.PRE_STREAM);
         addBefore(SoapPreProtocolOutInterceptor.class.getName());
     }
     


Reply via email to