summaryrefslogtreecommitdiffstats
path: root/lib/puppet/network/format.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/network/format.rb')
-rw-r--r--lib/puppet/network/format.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/network/format.rb b/lib/puppet/network/format.rb
index 9cd6cf0b5..69895c344 100644
--- a/lib/puppet/network/format.rb
+++ b/lib/puppet/network/format.rb
@@ -106,6 +106,6 @@ class Puppet::Network::Format
method = send(name)
- return(type == :class ? klass.respond_to?(method) : klass.instance_methods.include?(method))
+ return(type == :class ? klass.respond_to?(method) : klass.method_defined?(method))
end
end