You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2012/08/29 09:38:25 UTC

svn commit: r1378463 - /camel/trunk/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java

Author: ningjiang
Date: Wed Aug 29 07:38:25 2012
New Revision: 1378463

URL: http://svn.apache.org/viewvc?rev=1378463&view=rev
Log:
Polish the comments of DefaultCamelContext

Modified:
    camel/trunk/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java

Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java?rev=1378463&r1=1378462&r2=1378463&view=diff
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java (original)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java Wed Aug 29 07:38:25 2012
@@ -1394,7 +1394,7 @@ public class DefaultCamelContext extends
         // if the context was configured with auto startup = false, and we are already started,
         // then we may need to start the routes on the 2nd start call
         if (firstStartDone && !isAutoStartup() && isStarted()) {
-            // invoke this logic to warmup the routes and if possible also start the routes
+            // invoke this logic to warm up the routes and if possible also start the routes
             doStartOrResumeRoutes(routeServices, true, true, false, true);
         }