diff options
author | Vishnu Atrai <me@vishnuatrai.com> | 2012-03-03 23:48:29 +0530 |
---|---|---|
committer | Vishnu Atrai <me@vishnuatrai.com> | 2012-03-03 23:48:29 +0530 |
commit | d8996d3cab5657358656b572f3096a0a14bf0ccb (patch) | |
tree | bd8255ebc5ef11c195532d660de74975e18426f8 /actionpack/lib | |
parent | 2aec357b7e8e310be107b479224524f12f83d5a5 (diff) | |
download | rails-d8996d3cab5657358656b572f3096a0a14bf0ccb.tar.gz rails-d8996d3cab5657358656b572f3096a0a14bf0ccb.tar.bz2 rails-d8996d3cab5657358656b572f3096a0a14bf0ccb.zip |
remove usages of AS::OrderedHash
Diffstat (limited to 'actionpack/lib')
-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 |