diff --git a/lib/puppet/type/sensu_client_config.rb b/lib/puppet/type/sensu_client_config.rb index 69b37267a1..aaf6c697df 100644 --- a/lib/puppet/type/sensu_client_config.rb +++ b/lib/puppet/type/sensu_client_config.rb @@ -53,14 +53,6 @@ def insync?(is) value.each { |k, v| value[k] = to_type(v) } end - def is_to_s(hash = @is) - hash.keys.sort.map {|key| "#{key} => #{hash[key]}"}.join(", ") - end - - def should_to_s(hash = @should) - hash.keys.sort.map {|key| "#{key} => #{hash[key]}"}.join(", ") - end - def insync?(is) if defined? @should[0] if is == @should[0].each { |k, v| value[k] = to_type(v) }