From 7c9e4b0fa5a07489bed67715d433b1b083ee5490 Mon Sep 17 00:00:00 2001 From: hns Date: Tue, 22 Mar 2005 13:01:04 +0000 Subject: [PATCH] Do not merge lastModifieds in commit() --- src/helma/framework/core/Session.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/Session.java b/src/helma/framework/core/Session.java index 6cd17078..480e05f7 100644 --- a/src/helma/framework/core/Session.java +++ b/src/helma/framework/core/Session.java @@ -192,7 +192,7 @@ public class Session implements Serializable { * @param reval the request evaluator that handled the request */ public void commit(RequestEvaluator reval) { - lastModified = Math.max(lastModified, cacheNode.lastModified()); + // nothing to do } /**