Skip to content

Commit

Permalink
gh-1852 clean up commented line
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennedi committed Mar 10, 2022
1 parent d3d4de5 commit 303f700
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion adapters/repos/db/lsmkv/binary_search_tree_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ type binarySearchNodeMap struct {

func (n *binarySearchNodeMap) insert(key []byte, pair MapPair) {
if bytes.Equal(key, n.key) {
// n.values = insertSorted(n.values, pair)
n.values = append(n.values, pair)
return
}
Expand Down

0 comments on commit 303f700

Please sign in to comment.