You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2012/01/20 21:40:35 UTC

svn commit: r1234119 - /camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/config/XmlConfigTestSupport.java

Author: bvahdat
Date: Fri Jan 20 20:40:35 2012
New Revision: 1234119

URL: http://svn.apache.org/viewvc?rev=1234119&view=rev
Log:
Avoid compiler warning because of the raw type usage of ProcessorDefinition.

Modified:
    camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/config/XmlConfigTestSupport.java

Modified: camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/config/XmlConfigTestSupport.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/config/XmlConfigTestSupport.java?rev=1234119&r1=1234118&r2=1234119&view=diff
==============================================================================
--- camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/config/XmlConfigTestSupport.java (original)
+++ camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/config/XmlConfigTestSupport.java Fri Jan 20 20:40:35 2012
@@ -22,7 +22,6 @@ import org.apache.camel.CamelContext;
 import org.apache.camel.TestSupport;
 import org.apache.camel.model.FromDefinition;
 import org.apache.camel.model.ModelCamelContext;
-import org.apache.camel.model.ProcessorDefinition;
 import org.apache.camel.model.RouteDefinition;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -47,7 +46,7 @@ public class XmlConfigTestSupport extend
             FromDefinition fromType = inputs.get(0);
             assertEquals("from URI", "seda:test.a", fromType.getUri());
 
-            List<ProcessorDefinition> outputs = route.getOutputs();
+            List<?> outputs = route.getOutputs();
             assertEquals("Number of outputs", 1, outputs.size());
         }
     }