Remove unused Hash#__update method.

This commit is contained in:
Yukihiro "Matz" Matsumoto
2018-08-25 09:08:49 +09:00
parent 3554fc54de
commit a3fb80904d
-5
View File
@@ -341,11 +341,6 @@ class Hash
}
self.replace(h)
end
def __update(h)
h.each_key{|k| self[k] = h[k]}
self
end
end
##