diff options
author | ballman <ballman@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-09 12:30:03 +0000 |
---|---|---|
committer | ballman <ballman@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-05-09 12:30:03 +0000 |
commit | 5b44159c1a7e0cfa2cb1afcd32b387ac8deeb8a9 (patch) | |
tree | 5b6c5aa99cb3e9483ba2b3e200057b0f169463d9 /lib | |
parent | c1643600e1130e2ddd112abcf16bb040fbffe0bf (diff) | |
download | puppet-5b44159c1a7e0cfa2cb1afcd32b387ac8deeb8a9.tar.gz puppet-5b44159c1a7e0cfa2cb1afcd32b387ac8deeb8a9.tar.xz puppet-5b44159c1a7e0cfa2cb1afcd32b387ac8deeb8a9.zip |
Removed the testing method: checknewinsync.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2488 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/metatype/evaluation.rb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/puppet/metatype/evaluation.rb b/lib/puppet/metatype/evaluation.rb index 09495d6d1..ba4d84689 100644 --- a/lib/puppet/metatype/evaluation.rb +++ b/lib/puppet/metatype/evaluation.rb @@ -142,21 +142,6 @@ class Puppet::Type changes end - - private - # FIXARB: This can go away - def checknewinsync(currentvalues) - currentvalues.each { |prop, val| - if prop.respond_to? :new_insync? and prop.new_insync?(val) != prop.insync? - puts "#{prop.name} new_insync? != insync?" - self.devfail "#{prop.name} new_insync? != insync?" - end - } - - properties().each { |prop| - puts "#{prop.name} is missing from current values" if (!currentvalues.include?(prop)) - } - end end # $Id$ |