You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
voidtoList(finalConfigurationNodenode) {
if (!node.isList()) {
node.appendListNode().from(node);
}
}
what would be expected is for the contents of node to be moved into a new list child of the node.
What happens instead is something else -- and leads to attached, non-root nodes with a null value, which should not be possible. Initial attempts at changing where nodes are ensured attached in AbstractConfigurationNode.from were unsuccessful -- will need to look into this more.
The text was updated successfully, but these errors were encountered:
Given an operation such as:
what would be expected is for the contents of
node
to be moved into a new list child of the node.What happens instead is something else -- and leads to attached, non-root nodes with a
null
value, which should not be possible. Initial attempts at changing where nodes are ensured attached inAbstractConfigurationNode.from
were unsuccessful -- will need to look into this more.The text was updated successfully, but these errors were encountered: