summaryrefslogtreecommitdiff
path: root/pkg/bst/bst.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/bst/bst.go')
-rw-r--r--pkg/bst/bst.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/bst/bst.go b/pkg/bst/bst.go
index bbff91f4..664937ba 100644
--- a/pkg/bst/bst.go
+++ b/pkg/bst/bst.go
@@ -82,7 +82,6 @@ func (b *BST) removeHelper(uuid string, topic string, parent *BST) { //nolint:go
parent = curr
curr = curr.right
} else {
-
// if more than 1 topic - remove only topic, do not remove the whole vertex
if len(curr.uuids) > 1 {
if _, ok := curr.uuids[uuid]; ok {