* Do not check parent nodes found via _parent setting - just trust

getChildElement to be set appropriately.
This commit is contained in:
hns 2007-11-07 10:31:35 +00:00
parent 1650407241
commit 12423bb9a7

View file

@ -812,7 +812,7 @@ public final class Node implements INode, Serializable {
pn = (Node) pn.getChildElement(getString(rel.propName));
}
if (pn != null && pn.isParentOf(this)) {
if (pn != null) {
setParent(pn);
lastParentSet = System.currentTimeMillis();