Fix bug where collections are reloaded on change of private properties.
This commit is contained in:
parent
46fc141e97
commit
bee76afeb7
1 changed files with 3 additions and 2 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue