innocent SBC fun

This commit is contained in:
rusefillc 2021-04-28 22:06:01 -04:00
parent 886642599d
commit 5dad6acb6a
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public class AutoupdateUtil {
public static boolean hasExistingFile(String zipFileName, long completeFileSize, long lastModified) {
File file = new File(zipFileName);
System.out.println("We have " + file.length() + " " + new Date(file.lastModified()) + " " + file);
System.out.println("We have " + file.length() + " " + new Date(file.lastModified()) + " " + file.getAbsolutePath());
return file.length() == completeFileSize && file.lastModified() == lastModified;
}