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 /railties | |
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 'railties')
-rw-r--r-- | railties/lib/rails/application/route_inspector.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/application/route_inspector.rb b/railties/lib/rails/application/route_inspector.rb index 2ca0c68243..1e5ce67a58 100644 --- a/railties/lib/rails/application/route_inspector.rb +++ b/railties/lib/rails/application/route_inspector.rb @@ -64,7 +64,7 @@ module Rails # executes `rake routes`. People should not use this class. class RouteInspector # :nodoc: def initialize - @engines = ActiveSupport::OrderedHash.new + @engines = Hash.new end def format all_routes, filter = nil |