Use getChildElement() instead of getNode() to evict old keys when
changing the accessname property
This commit is contained in:
parent
4680e25ff6
commit
dc5bba8ddd
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue