Fix bug where collection in embedded db is erraneously set to anonymous.
This commit is contained in:
parent
01edf54603
commit
e4343eb563
1 changed files with 1 additions and 1 deletions
|
@ -440,7 +440,7 @@ public final class Node implements INode, Serializable {
|
|||
} else if (!anonymous && p.isParentOf(this)) {
|
||||
anonymous = true;
|
||||
}
|
||||
} else {
|
||||
} else if (!anonymous && p.isParentOf(this)) {
|
||||
anonymous = true;
|
||||
}
|
||||
} else if (!anonymous && p.isParentOf(this)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue