Set lastmod in constructor since it's all that's missing to have an updated ActionFile.

This commit is contained in:
hns 2002-10-31 15:18:37 +00:00
parent 3b6c99a2f5
commit f04fbc1c3e

View file

@ -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;
}