Author: davsclaus
Date: Thu Oct 30 10:20:37 2008
New Revision: 709214

URL: http://svn.apache.org/viewvc?rev=709214&view=rev
Log:
Polished javadoc and removed unused import

Modified:
    
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ChoiceType.java
    
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorType.java

Modified: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ChoiceType.java
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ChoiceType.java?rev=709214&r1=709213&r2=709214&view=diff
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ChoiceType.java
 (original)
+++ 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ChoiceType.java
 Thu Oct 30 10:20:37 2008
@@ -29,7 +29,6 @@
 import org.apache.camel.Predicate;
 import org.apache.camel.Processor;
 import org.apache.camel.builder.ExpressionClause;
-import org.apache.camel.impl.converter.DefaultTypeConverter;
 import org.apache.camel.processor.ChoiceProcessor;
 import org.apache.camel.processor.FilterProcessor;
 import org.apache.camel.spi.RouteContext;

Modified: 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorType.java
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorType.java?rev=709214&r1=709213&r2=709214&view=diff
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorType.java
 (original)
+++ 
activemq/camel/trunk/camel-core/src/main/java/org/apache/camel/model/ProcessorType.java
 Thu Oct 30 10:20:37 2008
@@ -131,8 +131,7 @@
     }
 
     /**
-     * Sends the exchange to a list of endpoints using the
-     * [EMAIL PROTECTED] org.apache.camel.processor.MulticastProcessor} pattern
+     * Sends the exchange to a list of endpoints
      */
     public Type to(String... uris) {
         for (String uri : uris) {
@@ -142,8 +141,7 @@
     }
 
     /**
-     * Sends the exchange to a list of endpoints using the
-     * [EMAIL PROTECTED] org.apache.camel.processor.MulticastProcessor} pattern
+     * Sends the exchange to a list of endpoints
      */
     public Type to(Endpoint... endpoints) {
         for (Endpoint endpoint : endpoints) {
@@ -153,8 +151,7 @@
     }
 
     /**
-     * Sends the exchange to a list of endpoint using the
-     * [EMAIL PROTECTED] org.apache.camel.processor.MulticastProcessor} pattern
+     * Sends the exchange to a list of endpoint
      */
     public Type to(Collection<Endpoint> endpoints) {
         for (Endpoint endpoint : endpoints) {


Reply via email to