Skip to content

Commit 9d4fb20

Browse files
committed
Remove debug print
1 parent 40fa3d6 commit 9d4fb20

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

trie/ctrie/ctrie.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ package ctrie
2626
import (
2727
"bytes"
2828
"errors"
29-
"fmt"
3029
"hash"
3130
"hash/fnv"
3231
"sync/atomic"
@@ -363,7 +362,6 @@ func (c *Ctrie) Clear() {
363362
func (c *Ctrie) Iterator(cancel <-chan struct{}) <-chan *Entry {
364363
ch := make(chan *Entry)
365364
snapshot := c.ReadOnlySnapshot()
366-
fmt.Printf("%+v\n", snapshot.root)
367365
go func() {
368366
traverse(snapshot.root, ch, cancel)
369367
close(ch)

0 commit comments

Comments
 (0)