From 8e011248465bae7b06203bc2c260432454bcac21 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 2 Oct 2002 16:45:35 +0000 Subject: use Object#class instead of deprecated Object#type. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/optparse.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/optparse.rb') diff --git a/lib/optparse.rb b/lib/optparse.rb index dc4564a4c..c92af70c9 100644 --- a/lib/optparse.rb +++ b/lib/optparse.rb @@ -629,7 +629,7 @@ Default options, which never appear in option summary. end end def inc(*args) - type.inc(*args) + self.class.inc(*args) end =begin @@ -663,7 +663,7 @@ Default options, which never appear in option summary. string pushed back to be first non-option argument =end #'#"#`# def terminate(arg = nil) - type.terminate(arg) + self.class.terminate(arg) end def self.terminate(arg = nil) throw :terminate, arg @@ -1422,11 +1422,11 @@ Base class of exceptions from (()) end def reason - @reason || self.type::Reason + @reason || self.class::Reason end def inspect - '#<' + type.to_s + ': ' + args.join(' ') + '>' + "#<#{self.class.to_s}: #{args.join(' ')}>" end def message -- cgit