aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-03 19:10:33 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-03 19:10:33 -0800
commitcb534524389bb4f407fc268a0bb7a7cffb6785a9 (patch)
treee928b2bdad77d63318613a155a20a0227866a427 /activesupport/lib
parenta242abbad8e2204a6ae7a4f8415abe71c9773a9c (diff)
downloadrails-cb534524389bb4f407fc268a0bb7a7cffb6785a9.tar.gz
rails-cb534524389bb4f407fc268a0bb7a7cffb6785a9.tar.bz2
rails-cb534524389bb4f407fc268a0bb7a7cffb6785a9.zip
Fix OrderedHash#to_hash to return self instead of a new hash with self as default value
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/ordered_hash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/ordered_hash.rb b/activesupport/lib/active_support/ordered_hash.rb
index 66aab9e562..d3cd2bcddd 100644
--- a/activesupport/lib/active_support/ordered_hash.rb
+++ b/activesupport/lib/active_support/ordered_hash.rb
@@ -54,7 +54,7 @@ module ActiveSupport
end
def to_hash
- Hash.new(self)
+ self
end
def each_key