Initialize lastPropertyRead to -1 because otherwise if the app.properties file
does not exist, properties are never initialized.
This commit is contained in:
parent
4e073785ab
commit
0ce19fb080
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue