You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2010/01/14 20:39:30 UTC

svn commit: r899372 - in /cxf/branches/2.2.x-fixes: ./ systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java

Author: dkulp
Date: Thu Jan 14 19:39:29 2010
New Revision: 899372

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

........
  r898521 | dkulp | 2010-01-12 16:18:55 -0500 (Tue, 12 Jan 2010) | 1 line
  
  Fix checkstyle errors
........

Modified:
    cxf/branches/2.2.x-fixes/   (props changed)
    cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java

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

Modified: cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java?rev=899372&r1=899371&r2=899372&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java (original)
+++ cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java Thu Jan 14 19:39:29 2010
@@ -23,7 +23,6 @@
 import java.io.StringWriter;
 import java.math.BigInteger;
 import java.util.HashMap;
-import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
 import java.util.concurrent.Executor;
@@ -77,16 +76,12 @@
 import org.apache.cxf.transports.http.configuration.HTTPClientPolicy;
 import org.apache.cxf.ws.rm.RMConstants;
 import org.apache.cxf.ws.rm.RMContextUtils;
-import org.apache.cxf.ws.rm.RMInInterceptor;
 import org.apache.cxf.ws.rm.RMManager;
-import org.apache.cxf.ws.rm.RMOutInterceptor;
 import org.apache.cxf.ws.rm.RMProperties;
-import org.apache.cxf.ws.rm.soap.RMSoapInterceptor;
 
 import org.junit.After;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
-import org.junit.Ignore;
 import org.junit.Test;
 
 
@@ -1426,17 +1421,6 @@
         mr.awaitMessages(nExpectedOut, nExpectedIn, timeout);
     }
 
-    private void removeRMInterceptors(List<Interceptor> interceptors) {
-        for (Iterator<Interceptor> it = interceptors.iterator(); it.hasNext();) {
-            Interceptor i = it.next();
-            if (i instanceof RMSoapInterceptor
-                || i instanceof RMOutInterceptor
-                || i instanceof RMInInterceptor) {
-                it.remove();
-            }
-        }
-    }
-
     private DOMSource getDOMRequest(String n) throws Exception {
         return getDOMRequest(n, false);
     }