terraform: remove print
This commit is contained in:
parent
696d5ef94f
commit
8d29f274c8
|
@ -54,7 +54,6 @@ func (t *PruneNoopTransformer) Transform(g *Graph) error {
|
||||||
|
|
||||||
// Do a depth first walk from the leaves and remove things.
|
// Do a depth first walk from the leaves and remove things.
|
||||||
return g.ReverseDepthFirstWalk(leaves, func(v dag.Vertex, depth int) error {
|
return g.ReverseDepthFirstWalk(leaves, func(v dag.Vertex, depth int) error {
|
||||||
println("NAME: " + v.(dag.NamedVertex).Name())
|
|
||||||
// We need a prunable
|
// We need a prunable
|
||||||
pn, ok := v.(GraphNodeNoopPrunable)
|
pn, ok := v.(GraphNodeNoopPrunable)
|
||||||
if !ok {
|
if !ok {
|
||||||
|
|
Loading…
Reference in New Issue