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
"Node #{} of TreeUpdate includes duplicate child #{};",
82
-
node_id.0, child_id.0
81
+
"Node {:?} of TreeUpdate includes duplicate child {:?};",
82
+
node_id, child_id
83
83
);
84
84
}
85
85
unreachable.remove(child_id);
@@ -139,7 +139,7 @@ impl State {
139
139
panic!("TreeUpdate includes {} nodes which are neither in the current tree nor a child of another node from the update: {}", pending_nodes.len(),ShortNodeList(&pending_nodes));
140
140
}
141
141
if !pending_children.is_empty(){
142
-
panic!("TreeUpdate's nodes include {} children ids which are neither in the current tree nor the id of another node from the update: {}", pending_children.len(),ShortNodeList(&pending_children));
142
+
panic!("TreeUpdate's nodes include {} children ids which are neither in the current tree nor the ID of another node from the update: {}", pending_children.len(),ShortNodeList(&pending_children));
143
143
}
144
144
145
145
self.focus = update.focus;
@@ -361,7 +361,7 @@ impl<T> fmt::Display for ShortNodeList<'_, T> {
0 commit comments