diff --git a/src/helma/objectmodel/db/NodeManager.java b/src/helma/objectmodel/db/NodeManager.java index 7ca4438c..e7dd0bb6 100644 --- a/src/helma/objectmodel/db/NodeManager.java +++ b/src/helma/objectmodel/db/NodeManager.java @@ -701,11 +701,12 @@ public final class NodeManager { } // update may cause changes in the node's parent subnode array - if (node.isAnonymous()) { + // TODO: is this really needed anymore? + if (markMappingAsUpdated && node.isAnonymous()) { Node parent = node.getCachedParent(); if (parent != null) { - parent.lastSubnodeChange = System.currentTimeMillis(); + parent.setLastSubnodeChange(System.currentTimeMillis()); } }