Skip to content

Commit 7f2793a

Browse files
committed
refactor: remove print
1 parent 5ac5c2f commit 7f2793a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pkg/internal/collections/graph/graph.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package graph
22

33
import (
4-
"fmt"
5-
64
"github.com/4strodev/wiring/pkg/internal/collections/set"
75
)
86

@@ -35,7 +33,6 @@ func (g Graph[T]) GetRootNodes() []*Node[T] {
3533
var rootNodes = []*Node[T]{}
3634
for node := range g.nodes {
3735
if !node.HasIncomingNodes() {
38-
fmt.Println(node.Val)
3936
rootNodes = append(rootNodes, node)
4037
}
4138
}

0 commit comments

Comments
 (0)