summaryrefslogtreecommitdiff
path: root/pkg/bst
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/bst')
-rw-r--r--pkg/bst/bst.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bst/bst.go b/pkg/bst/bst.go
index f8426b12..dab9346c 100644
--- a/pkg/bst/bst.go
+++ b/pkg/bst/bst.go
@@ -88,7 +88,7 @@ func (b *BST) Remove(uuid string, topic string) {
b.removeHelper(uuid, topic, nil)
}
-func (b *BST) removeHelper(uuid string, topic string, parent *BST) { //nolint:gocognit
+func (b *BST) removeHelper(uuid string, topic string, parent *BST) {
curr := b
for curr != nil {
if topic < curr.topic { //nolint:gocritic