summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-array-ext/mrblib
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-09-19 22:19:55 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-09-19 22:19:55 +0900
commit747059a718b9c6538891a21df69bad9998c51ad0 (patch)
treecee6be6a11aa63a9f0b9ab037f0cba96b860c7fd /mrbgems/mruby-array-ext/mrblib
parentb6c5e501b370e0758e9f1e224b2dd363df4f0998 (diff)
downloadmruby-747059a718b9c6538891a21df69bad9998c51ad0.tar.gz
mruby-747059a718b9c6538891a21df69bad9998c51ad0.zip
Removed `to_ary` conversion method.
Diffstat (limited to 'mrbgems/mruby-array-ext/mrblib')
-rw-r--r--mrbgems/mruby-array-ext/mrblib/array.rb11
1 files changed, 1 insertions, 10 deletions
diff --git a/mrbgems/mruby-array-ext/mrblib/array.rb b/mrbgems/mruby-array-ext/mrblib/array.rb
index 7e8e792d4..f94d08765 100644
--- a/mrbgems/mruby-array-ext/mrblib/array.rb
+++ b/mrbgems/mruby-array-ext/mrblib/array.rb
@@ -1,3 +1,4 @@
+# coding: cp932
class Array
##
# call-seq:
@@ -758,16 +759,6 @@ class Array
end
##
- # call-seq:
- # ary.to_ary -> ary
- #
- # Returns +self+.
- #
- def to_ary
- self
- end
-
- ##
# call-seq:
# ary.dig(idx, ...) -> object
#