This code was needed to work around http://redmine.ruby-lang.org/issues/show/2494. Since that bug is now closed in Ruby, we can remove it.

This commit is contained in:
Yehuda Katz 2009-12-24 23:48:35 -08:00
parent 3b1642c23c
commit 1c66f85eb6
1 changed files with 1 additions and 4 deletions

View File

@ -43,10 +43,7 @@ class NilClass
private
def method_missing(method, *args, &block)
# Ruby 1.9.2: disallow explicit coercion via method_missing.
if method == :to_ary || method == :to_str
raise NoMethodError, "undefined method `#{method}' for nil:NilClass"
elsif klass = METHOD_CLASS_MAP[method]
if klass = METHOD_CLASS_MAP[method]
raise_nil_warning_for klass, method, caller
else
super