* Do not check parent nodes found via _parent setting - just trust
getChildElement to be set appropriately.
This commit is contained in:
parent
1650407241
commit
12423bb9a7
1 changed files with 1 additions and 1 deletions
|
@ -812,7 +812,7 @@ public final class Node implements INode, Serializable {
|
||||||
pn = (Node) pn.getChildElement(getString(rel.propName));
|
pn = (Node) pn.getChildElement(getString(rel.propName));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pn != null && pn.isParentOf(this)) {
|
if (pn != null) {
|
||||||
setParent(pn);
|
setParent(pn);
|
||||||
lastParentSet = System.currentTimeMillis();
|
lastParentSet = System.currentTimeMillis();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue