summaryrefslogtreecommitdiff
path: root/lib/ostruct.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-10-02 16:45:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-10-02 16:45:35 +0000
commit29cef5f795043a048a58874d90de0dfe01aa12ea (patch)
tree6ae42a518c1c5705b8f097668d2b83413da0b6ec /lib/ostruct.rb
parent8815306dc5aadd777c887bbd8de7057598ad709c (diff)
use Object#class instead of deprecated Object#type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/ostruct.rb')
-rw-r--r--lib/ostruct.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ostruct.rb b/lib/ostruct.rb
index f083677d8e..9106f6e068 100644
--- a/lib/ostruct.rb
+++ b/lib/ostruct.rb
@@ -35,14 +35,14 @@ class OpenStruct
end
def delete_field(name)
- if name.type == Fixnum
+ if name.class == Fixnum
name = name.id2name
end
@table.delete name
end
def inspect
- str = "<#{self.type}"
+ str = "<#{self.class}"
for k,v in @table
str += " "
str += k