Author: markt Date: Mon Mar 23 11:30:22 2015 New Revision: 1668593 URL: http://svn.apache.org/r1668593 Log: Correct comment
Modified: tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java Modified: tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java?rev=1668593&r1=1668592&r2=1668593&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java (original) +++ tomcat/trunk/java/org/apache/catalina/startup/ExpandWar.java Mon Mar 23 11:30:22 2015 @@ -95,9 +95,8 @@ public class ExpandWar { // Check to see of the WAR has been expanded previously if (docBase.exists()) { // A WAR was expanded. Tomcat will have set the last modified - // time of the expanded directory to the last modified time of - // the WAR so changes to the WAR while Tomcat is stopped can be - // detected + // time of warTracker file to the last modified time of the WAR so + // changes to the WAR while Tomcat is stopped can be detected if (!warTracker.exists() || warTracker.lastModified() == warLastModified) { // No (detectable) changes to the WAR success = true; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org