It was called in the 'check' attribute but not set anywhere else. The whole point of being a property is that you can retrieve the current state of that property - not being checkable/auditable is nonsensical.
Signed-off-by: Luke Kanies <[email protected]> --- lib/puppet/property.rb | 16 ---------------- 1 files changed, 0 insertions(+), 16 deletions(-) diff --git a/lib/puppet/property.rb b/lib/puppet/property.rb index 5e616c3..7601d78 100644 --- a/lib/puppet/property.rb +++ b/lib/puppet/property.rb @@ -35,22 +35,6 @@ class Puppet::Property < Puppet::Parameter end @array_matching = value end - - def checkable - @checkable = true - end - - def uncheckable - @checkable = false - end - - def checkable? - if defined? @checkable - return @checkable - else - return true - end - end end # Look up a value's name, so we can find options and such. -- 1.6.1 -- You received this message because you are subscribed to the Google Groups "Puppet Developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.
