summaryrefslogtreecommitdiffhomepage
path: root/mrblib
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-04-04 11:03:26 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-04-04 11:03:26 +0900
commitb9a4d6406428e6075d2dd3c5bd8ba73dd2fa94aa (patch)
treef4f054730861c9bbc018f723142a7dd04ab6b7f5 /mrblib
parent786ed10d59372433aefdf5451f081ba7aa2964be (diff)
downloadmruby-b9a4d6406428e6075d2dd3c5bd8ba73dd2fa94aa.tar.gz
mruby-b9a4d6406428e6075d2dd3c5bd8ba73dd2fa94aa.zip
implement Hash#initialize in C
Diffstat (limited to 'mrblib')
-rw-r--r--mrblib/hash.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/mrblib/hash.rb b/mrblib/hash.rb
index 539efcdf3..6fae521a8 100644
--- a/mrblib/hash.rb
+++ b/mrblib/hash.rb
@@ -143,14 +143,6 @@ class Hash
end
##
- # Create a direct instance of the class Hash.
- #
- # ISO 15.2.13.4.16
- def initialize(*args, &block)
- self.__init_core(block, *args)
- end
-
- ##
# Replaces the contents of <i>hsh</i> with the contents of other hash
#
# ISO 15.2.13.4.23