提交 523658c1 编写于 作者: J Jeremy Kemper

Simplify and speedup Hash#stringify_keys! References #10717 [Cheah Chu Yeow]


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8576 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 98292128
......@@ -13,10 +13,7 @@ def stringify_keys
# Destructively convert all keys to strings.
def stringify_keys!
keys.each do |key|
unless key.class.to_s == "String" # weird hack to make the tests run when string_ext_test.rb is also running
self[key.to_s] = self[key]
delete(key)
end
self[key.to_s] = delete(key)
end
self
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册