Initialize lastPropertyRead to -1 because otherwise if the app.properties file

does not exist, properties are never initialized.
This commit is contained in:
hns 2004-10-28 19:17:50 +00:00
parent 4e073785ab
commit 0ce19fb080

View file

@ -138,7 +138,7 @@ public final class Application implements IPathElement, Runnable {
Properties skinExtensions;
// time we last read the properties file
private long lastPropertyRead = 0L;
private long lastPropertyRead = -1L;
// the set of prototype/function pairs which are allowed to be called via XML-RPC
private HashSet xmlrpcAccess;