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/09/16 21:57:22 UTC

svn commit: r997900 - /cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java

Author: dkulp
Date: Thu Sep 16 19:57:22 2010
New Revision: 997900

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

........
  r997892 | dkulp | 2010-09-16 15:45:52 -0400 (Thu, 16 Sep 2010) | 2 lines
  
  [CXF-2995] Patch use of cxf with lazy inits.
  Patch from Adam Lewandowski applied
........

Modified:
    cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java

Modified: cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java?rev=997900&r1=997899&r2=997900&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java (original)
+++ cxf/branches/2.2.x-fixes/rt/core/src/test/java/org/apache/cxf/bus/spring/BusDefinitionParserTest.java Thu Sep 16 19:57:22 2010
@@ -90,7 +90,7 @@ public class BusDefinitionParserTest ext
         String cfgFile = "org/apache/cxf/bus/spring/lazyInitBus.xml";
         Bus bus = new SpringBusFactory().createBus(cfgFile, true);
 
-        List<Interceptor<? extends Message>> in = bus.getInInterceptors();
+        List<Interceptor> in = bus.getInInterceptors();
         boolean found = false;
         for (Interceptor i : in) {
             if (i instanceof LoggingInInterceptor) {