From f04fbc1c3e5c31749c2e45049fa6944b555454ab Mon Sep 17 00:00:00 2001 From: hns Date: Thu, 31 Oct 2002 15:18:37 +0000 Subject: [PATCH] Set lastmod in constructor since it's all that's missing to have an updated ActionFile. --- src/helma/scripting/ActionFile.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helma/scripting/ActionFile.java b/src/helma/scripting/ActionFile.java index 6f11fe91..fa4e8c49 100644 --- a/src/helma/scripting/ActionFile.java +++ b/src/helma/scripting/ActionFile.java @@ -35,6 +35,7 @@ public class ActionFile implements Updatable { this.name = name; this.sourceName = file.getParentFile().getName()+"/"+file.getName(); this.file = file; + this.lastmod = file.lastModified (); this.content = null; }