one more getParent() removed from addNode()

This commit is contained in:
hns 2001-04-03 17:45:37 +00:00
parent bd24f08040
commit d918bf0bf5

View file

@ -762,7 +762,7 @@ public class Node implements INode, Serializable {
}
}
if (node.getParent () == null && !"root".equalsIgnoreCase (node.getPrototype ())) {
if (node.parentID == null && !"root".equalsIgnoreCase (node.getPrototype ())) {
node.setParent (this);
node.anonymous = true;
}