From 0ce19fb080c6049f7f111b97766b94737b00e921 Mon Sep 17 00:00:00 2001 From: hns Date: Thu, 28 Oct 2004 19:17:50 +0000 Subject: [PATCH] Initialize lastPropertyRead to -1 because otherwise if the app.properties file does not exist, properties are never initialized. --- src/helma/framework/core/Application.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index 6499f4c1..4c4e508a 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -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;