Subversion Repository Public Repository

litesoft

Diff Revisions 615 vs 616 for /trunk/Java/ScarPlus/src/com/esotericsoftware/scar/Project.java

Diff revisions: vs.
  @@ -186,7 +186,8 @@
186 186 File zWarPathFile = getWarPathFile();
187 187 if ( zWarPathFile.exists() )
188 188 {
189 - if ( zWarPathFile.lastModified() >= zClassPath.getGreatestLastModified() )
189 + long zWarLastModified = zWarPathFile.lastModified();
190 + if ( (zWarLastModified >= zClassPath.getGreatestLastModified()) && (zWarLastModified >= zDistPaths.getGreatestLastModified()) )
190 191 {
191 192 progress( "WAR: " + this + " NOT Needed!" );
192 193 return false;