Do not set anonymous flag in getParent()
This commit is contained in:
parent
b0423ee9f0
commit
143abce688
1 changed files with 2 additions and 2 deletions
|
@ -617,7 +617,7 @@ public final class Node implements INode, Serializable {
|
||||||
} catch (Exception ignore) {
|
} catch (Exception ignore) {
|
||||||
// just fall back to default method
|
// just fall back to default method
|
||||||
}
|
}
|
||||||
|
|
||||||
lastNameCheck = System.currentTimeMillis();
|
lastNameCheck = System.currentTimeMillis();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -922,7 +922,7 @@ public final class Node implements INode, Serializable {
|
||||||
|
|
||||||
if (pn != null) {
|
if (pn != null) {
|
||||||
setParent((Node) pn);
|
setParent((Node) pn);
|
||||||
anonymous = !pinfo.named;
|
// anonymous = !pinfo.named;
|
||||||
lastParentSet = System.currentTimeMillis();
|
lastParentSet = System.currentTimeMillis();
|
||||||
|
|
||||||
return pn;
|
return pn;
|
||||||
|
|
Loading…
Add table
Reference in a new issue