From 25d2e65674121473b11352c593996e6d1d45bf78 Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 30 Apr 2003 14:47:36 +0000 Subject: [PATCH] Fix bug http://helma.org/bugs/show_bug.cgi?id=235 --- src/helma/framework/core/Prototype.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/Prototype.java b/src/helma/framework/core/Prototype.java index 234726d3..8a5b051c 100644 --- a/src/helma/framework/core/Prototype.java +++ b/src/helma/framework/core/Prototype.java @@ -121,7 +121,7 @@ public final class Prototype { public long getChecksum() { // long start = System.currentTimeMillis(); File[] f = getFiles(); - long c = 0; + long c = directory.lastModified(); for (int i = 0; i < f.length; i++) c += f[i].lastModified();