You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2011/11/10 17:04:46 UTC

svn commit: r1200398 - /tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java

Author: markt
Date: Thu Nov 10 16:04:46 2011
New Revision: 1200398

URL: http://svn.apache.org/viewvc?rev=1200398&view=rev
Log:
Correct comment

Modified:
    tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java

Modified: tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java?rev=1200398&r1=1200397&r2=1200398&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java (original)
+++ tomcat/trunk/java/org/apache/catalina/startup/HostConfig.java Thu Nov 10 16:04:46 2011
@@ -445,7 +445,7 @@ public class HostConfig
         String[] filteredAppPaths = filterAppPaths(appBase.list());
         // Deploy XML descriptors from configBase
         deployDescriptors(configBase, configBase.list());
-        // Deploy WARs, and loop if additional descriptors are found
+        // Deploy WARs
         deployWARs(appBase, filteredAppPaths);
         // Deploy expanded folders
         deployDirectories(appBase, filteredAppPaths);
@@ -506,7 +506,7 @@ public class HostConfig
         File xml = new File(configBase, baseName + ".xml");
         if (xml.exists())
             deployDescriptor(cn, xml);
-        // Deploy WARs, and loop if additional descriptors are found
+        // Deploy WARs
         File war = new File(appBase, baseName + ".war");
         if (war.exists())
             deployWAR(cn, war);



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org