Fix bug where collections are reloaded on change of private properties.

This commit is contained in:
hns 2005-03-08 11:33:09 +00:00
parent 46fc141e97
commit bee76afeb7

View file

@ -701,11 +701,12 @@ public final class NodeManager {
} }
// update may cause changes in the node's parent subnode array // 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(); Node parent = node.getCachedParent();
if (parent != null) { if (parent != null) {
parent.lastSubnodeChange = System.currentTimeMillis(); parent.setLastSubnodeChange(System.currentTimeMillis());
} }
} }