r9623 - helma/helma/branches/lazy_collections/src/helma/util
[email protected] Fri, 17 Apr 2009 00:41:11 +0200 (CEST)
| Newsgroups | gmane.comp.java.helma.cvs |
|---|---|
| Message-ID | <20090416224111.2FE2F3D0D6@mia> |
Author: hannes
Date: 2009-04-17 00:41:11 +0200 (Fri, 17 Apr 2009)
New Revision: 9623
Modified:
helma/helma/branches/lazy_collections/src/helma/util/ResourceProperties.java
Log:
Make sure lastModified is always set as it is used for lastTypeChange field in DbMapping
Details at http://dev.helma.org/trac/helma/changeset/9623
Modified: helma/helma/branches/lazy_collections/src/helma/util/ResourceProperties.java
===================================================================
--- helma/helma/branches/lazy_collections/src/helma/util/ResourceProperties.java 2009-04-16 19:19:09 UTC (rev 9622)
+++ helma/helma/branches/lazy_collections/src/helma/util/ResourceProperties.java 2009-04-16 22:41:11 UTC (rev 9623)
@@ -46,7 +46,7 @@
private long lastCheck = 0;
// Time porperties were last modified
- private long lastModified = 0;
+ private long lastModified = System.currentTimeMillis();
// Application where to fetch additional resources
private Application app;