summaryrefslogtreecommitdiffhomepage
path: root/mrblib/hash.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-08-25 09:08:49 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2018-08-25 09:41:21 +0900
commita3fb80904dcbbf2aaec0df202e343b10f0518d1c (patch)
tree11389f2705214185bf3b220d60803eee3c8bcc55 /mrblib/hash.rb
parent3554fc54de68e2cf92121147df071b57b50663b1 (diff)
downloadmruby-a3fb80904dcbbf2aaec0df202e343b10f0518d1c.tar.gz
mruby-a3fb80904dcbbf2aaec0df202e343b10f0518d1c.zip
Remove unused `Hash#__update` method.
Diffstat (limited to 'mrblib/hash.rb')
-rw-r--r--mrblib/hash.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/mrblib/hash.rb b/mrblib/hash.rb
index 7e1db905f..96029a230 100644
--- a/mrblib/hash.rb
+++ b/mrblib/hash.rb
@@ -341,11 +341,6 @@ class Hash
}
self.replace(h)
end
-
- def __update(h)
- h.each_key{|k| self[k] = h[k]}
- self
- end
end
##