Skip to content

Commit 9e09029

Browse files
committedFeb 1, 2014
Remove Native::Object#to_ary
Native::Array isn't really eligible for #to_ary status, so it ends up raising weird exceptions when methods that use #to_ary work on it.
1 parent 2c6bae2 commit 9e09029

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
 

‎stdlib/native.rb

-4
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,6 @@ def to_a(options = {}, &block)
246246
Native::Array.new(@native, options, &block).to_a
247247
end
248248

249-
def to_ary(options = {}, &block)
250-
Native::Array.new(@native, options, &block)
251-
end
252-
253249
def inspect
254250
"#<Native:#{`String(#@native)`}>"
255251
end

0 commit comments

Comments
 (0)
Please sign in to comment.