Method: Puppet::Graph::SimpleGraph#clear

Defined in:
lib/puppet/graph/simple_graph.rb

#clearObject

Clear our graph.



36
37
38
39
40
41
# File 'lib/puppet/graph/simple_graph.rb', line 36

def clear
  @in_to.clear
  @out_from.clear
  @upstream_from.clear
  @downstream_from.clear
end