diff options
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r-- | lib/puppet/parser/ast/node.rb | 1 | ||||
-rw-r--r-- | lib/puppet/parser/scope.rb | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/puppet/parser/ast/node.rb b/lib/puppet/parser/ast/node.rb index 79fdd50d7..2e33eb672 100644 --- a/lib/puppet/parser/ast/node.rb +++ b/lib/puppet/parser/ast/node.rb @@ -48,7 +48,6 @@ class Puppet::Parser::AST # Evaluate our parent class. def evalparent(scope) if @parentclass - Puppet.warning "evaluating parent %s" % @parentclass # This is pretty messed up. I don't know if this will # work in the long term, but we need to evaluate the node # in our own scope, even though our parent node has diff --git a/lib/puppet/parser/scope.rb b/lib/puppet/parser/scope.rb index 27a64eec6..641a05758 100644 --- a/lib/puppet/parser/scope.rb +++ b/lib/puppet/parser/scope.rb @@ -251,7 +251,6 @@ module Puppet # And now evaluate each set klass within the nodescope. classes.each { |klass| if code = scope.lookuptype(klass) - Puppet.warning "evaluating %s" % klass code.safeevaluate(scope, {}, klass, klass) end } |