* Avoid infinite recursion in makeChildrenPersistable()
This commit is contained in:
parent
c52a29741e
commit
82b35af983
1 changed files with 1 additions and 1 deletions
|
@ -2597,7 +2597,7 @@ public final class Node implements INode, Serializable {
|
||||||
// check if this property actually needs to be persisted.
|
// check if this property actually needs to be persisted.
|
||||||
Node n = (Node) next.getNodeValue();
|
Node n = (Node) next.getNodeValue();
|
||||||
|
|
||||||
if (n == null) {
|
if (n == null || n == this) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue