diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2008-11-02 23:23:19 +0530 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-11-02 23:23:19 +0530 |
commit | 18bf7b421d55c60029289edef1df409a58d021e4 (patch) | |
tree | 63aa3787b5aecf70a008a58f222d2da767c82f84 | |
parent | 934f98e4cf7c43f8c632496b02ac99492d6b3de1 (diff) | |
download | rails-18bf7b421d55c60029289edef1df409a58d021e4.tar.gz rails-18bf7b421d55c60029289edef1df409a58d021e4.tar.bz2 rails-18bf7b421d55c60029289edef1df409a58d021e4.zip |
Remove unused debug_routes
-rw-r--r-- | actionpack/lib/action_controller/base.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 61f9f354c3..b001b355dc 100644 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -278,12 +278,6 @@ module ActionController #:nodoc: @@consider_all_requests_local = true cattr_accessor :consider_all_requests_local - # Enable or disable the collection of failure information for RoutingErrors. - # This information can be extremely useful when tweaking custom routes, but is - # pointless once routes have been tested and verified. - @@debug_routes = true - cattr_accessor :debug_routes - # Indicates whether to allow concurrent action processing. Your # controller actions and any other code they call must also behave well # when called from concurrent threads. Turned off by default. |