From 7169c3cec2ef735c259e2140803acc4667c18b0c Mon Sep 17 00:00:00 2001 From: why Date: Tue, 24 Jun 2003 14:12:03 +0000 Subject: * lib/yaml/types.rb: replaced Kernel::Hash reference with Object::Hash from [ruby-talk:74270] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3997 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/yaml/types.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/yaml/types.rb b/lib/yaml/types.rb index 294fb36a5..f7772cb3a 100644 --- a/lib/yaml/types.rb +++ b/lib/yaml/types.rb @@ -46,7 +46,7 @@ module YAML # # YAML Hash class to support comments and defaults # - class SpecialHash < Kernel::Hash + class SpecialHash < Object::Hash attr_accessor :default def inspect self.default.to_s -- cgit