summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-04-24 17:46:20 -0500
committerLuke Kanies <luke@madstop.com>2009-04-24 17:46:20 -0500
commitf489c30411e8fdee4e43a4f580d135acdaeae946 (patch)
treea86064a9f0a69c4d331ed1edf795fa4b16bfcc74 /lib/puppet/parser
parent93c3892e729de48da78fed309c7107ce3e191254 (diff)
downloadpuppet-f489c30411e8fdee4e43a4f580d135acdaeae946.tar.gz
puppet-f489c30411e8fdee4e43a4f580d135acdaeae946.tar.xz
puppet-f489c30411e8fdee4e43a4f580d135acdaeae946.zip
Removing an "inspect" method that often failed in testing
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet/parser')
-rw-r--r--lib/puppet/parser/resource/param.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/puppet/parser/resource/param.rb b/lib/puppet/parser/resource/param.rb
index 0f791ecc5..0662ce953 100644
--- a/lib/puppet/parser/resource/param.rb
+++ b/lib/puppet/parser/resource/param.rb
@@ -17,10 +17,6 @@ class Puppet::Parser::Resource::Param
@name = symbolize(@name)
end
- def inspect
- "#<#{self.class} @name => #{name}, @value => #{value}, @source => #{source.name if source}, @line => #{line}>"
- end
-
def line_to_i
return line ? Integer(line) : nil
end