terraform: remove print

This commit is contained in:
Mitchell Hashimoto 2015-07-20 08:55:57 -07:00
parent 696d5ef94f
commit 8d29f274c8
1 changed files with 0 additions and 1 deletions

View File

@ -54,7 +54,6 @@ func (t *PruneNoopTransformer) Transform(g *Graph) error {
// Do a depth first walk from the leaves and remove things.
return g.ReverseDepthFirstWalk(leaves, func(v dag.Vertex, depth int) error {
println("NAME: " + v.(dag.NamedVertex).Name())
// We need a prunable
pn, ok := v.(GraphNodeNoopPrunable)
if !ok {