https://bz.apache.org/bugzilla/show_bug.cgi?id=58625

--- Comment #1 from loic.ou...@gmail.com ---
there is duplicate code in org.apache.catalina.startup.HostConfig :
        if (xml.exists() && unpackWARs &&
                (!warTracker.exists() || warTracker.lastModified() ==
war.lastModified())) {
            useXml = true;
        }

the same pacth might be included also:
        if (xml.exists() && unpackWARs &&
                (warTracker.exists() && warTracker.lastModified() ==
war.lastModified())) {
            useXml = true;
        }

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

Reply via email to