diff options
author | Valery Piashchynski <[email protected]> | 2021-05-27 22:55:45 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-05-27 22:55:45 +0300 |
commit | 9a416cf4f8489a3a0f2c22024bbdf598a20cf41b (patch) | |
tree | 1d07e20db66584adef2a83082a83c803ef54b35e /pkg/bst/bst.go | |
parent | 2a69d0b5af63d7c9acc36566cab3012e951421d7 (diff) |
- Linters warnings fix
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'pkg/bst/bst.go')
-rw-r--r-- | pkg/bst/bst.go | 1 |
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 { |