This commit is contained in:
Pranav Gaddamadugu 2024-11-13 18:14:55 -08:00
parent 1379843a8f
commit 5501a405c2

View File

@ -61,9 +61,9 @@ impl<N: Node> TreeNode<N> {
// Remove the element from the node.
if !self.elements.shift_remove(element) {
self.counter += 1;
return false;
false
} else {
return is_not_first;
is_not_first
}
}
}