Cleanup SRC

This commit is contained in:
Daniel Mills
2021-07-14 02:34:13 -04:00
parent f29015426f
commit 6ca6fc6989
605 changed files with 53283 additions and 64305 deletions

View File

@@ -2,38 +2,33 @@ package com.volmit.iris.util;
import java.io.File;
public class FileWatcher
{
protected final File file;
private boolean exists;
private long lastModified;
private long size;
public class FileWatcher {
protected final File file;
private boolean exists;
private long lastModified;
private long size;
public FileWatcher(File file)
{
this.file = file;
readProperties();
}
public FileWatcher(File file) {
this.file = file;
readProperties();
}
protected void readProperties()
{
exists = file.exists();
lastModified = exists ? file.lastModified() : -1;
size = exists ? file.isDirectory() ? -2 : file.length() : -1;
}
protected void readProperties() {
exists = file.exists();
lastModified = exists ? file.lastModified() : -1;
size = exists ? file.isDirectory() ? -2 : file.length() : -1;
}
public boolean checkModified()
{
long m = lastModified;
long g = size;
boolean mod = false;
readProperties();
public boolean checkModified() {
long m = lastModified;
long g = size;
boolean mod = false;
readProperties();
if(lastModified != m || g != size)
{
mod = true;
}
if (lastModified != m || g != size) {
mod = true;
}
return mod;
}
return mod;
}
}