We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ac5c2f commit 7f2793aCopy full SHA for 7f2793a
pkg/internal/collections/graph/graph.go
@@ -1,8 +1,6 @@
1
package graph
2
3
import (
4
- "fmt"
5
-
6
"github.com/4strodev/wiring/pkg/internal/collections/set"
7
)
8
@@ -35,7 +33,6 @@ func (g Graph[T]) GetRootNodes() []*Node[T] {
35
33
var rootNodes = []*Node[T]{}
36
34
for node := range g.nodes {
37
if !node.HasIncomingNodes() {
38
- fmt.Println(node.Val)
39
rootNodes = append(rootNodes, node)
40
}
41
0 commit comments