diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-03 10:53:37 -0800 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-03 10:53:37 -0800 |
commit | 833181f5983bf77cfe359af6fcb9ede5fb8151f8 (patch) | |
tree | bd8255ebc5ef11c195532d660de74975e18426f8 /actionpack | |
parent | 2aec357b7e8e310be107b479224524f12f83d5a5 (diff) | |
parent | d8996d3cab5657358656b572f3096a0a14bf0ccb (diff) | |
download | rails-833181f5983bf77cfe359af6fcb9ede5fb8151f8.tar.gz rails-833181f5983bf77cfe359af6fcb9ede5fb8151f8.tar.bz2 rails-833181f5983bf77cfe359af6fcb9ede5fb8151f8.zip |
Merge pull request #5260 from castlerock/remove_ordered_hash_usages
remove usage of AS::OrderedHash from other places
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/metal/mime_responds.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/mime_responds.rb b/actionpack/lib/action_controller/metal/mime_responds.rb index 55de7e7d8e..cb59af4f85 100644 --- a/actionpack/lib/action_controller/metal/mime_responds.rb +++ b/actionpack/lib/action_controller/metal/mime_responds.rb @@ -58,7 +58,7 @@ module ActionController #:nodoc: # Clear all mime types in <tt>respond_to</tt>. # def clear_respond_to - self.mimes_for_respond_to = ActiveSupport::OrderedHash.new.freeze + self.mimes_for_respond_to = Hash.new.freeze end end |