remove removes this node and all children from the tree list
()
| 385 | |
| 386 | // remove removes this node and all children from the tree list |
| 387 | func (n *TreeNode) remove() { |
| 388 | |
| 389 | n.tree.List.Remove(n) |
| 390 | n.removeItems() |
| 391 | } |
| 392 | |
| 393 | // removeItems removes this node children from the tree list |
| 394 | func (n *TreeNode) removeItems() { |
no test coverage detected