-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.10.0, 1.12.0, 1.14.0, 1.16.0, 1.18.0
-
Component/s: documentmk
-
Labels:None
The following sequence will give an incorrect base state:
NodeState s1 = ...; NodeBuilder b1 = s1.builder(); b1.child("foo"); NodeState s2 = b1.getNodeState(); NodeBuilder b2 = s2.builder(); NodeState base = b2.getBaseState();
The NodeState base should reflect s2, but instead is equal to s1.