Use getChildElement() instead of getNode() to evict old keys when

changing the accessname property
This commit is contained in:
hns 2004-07-06 14:00:53 +00:00
parent 4680e25ff6
commit dc5bba8ddd

View file

@ -1930,7 +1930,7 @@ public final class Node implements INode, Serializable {
} }
if (oldvalue != null) { if (oldvalue != null) {
n = parent.getNode(oldvalue); n = (INode) parent.getChildElement(oldvalue);
if (n == this) { if (n == this) {
parent.unset(oldvalue); parent.unset(oldvalue);