aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware
diff options
context:
space:
mode:
authorSergey Nartimov <just.lest@gmail.com>2011-12-21 22:26:45 +0300
committerSergey Nartimov <just.lest@gmail.com>2011-12-21 22:26:45 +0300
commit63a58213bcdb51f11d51c55978d2ab4753615b9b (patch)
treec1f5f3ac0ea97331634b2983ea8b1be15611fda9 /actionpack/lib/action_dispatch/middleware
parent1a358e43d204ef86229418e76c55579220b41207 (diff)
downloadrails-63a58213bcdb51f11d51c55978d2ab4753615b9b.tar.gz
rails-63a58213bcdb51f11d51c55978d2ab4753615b9b.tar.bz2
rails-63a58213bcdb51f11d51c55978d2ab4753615b9b.zip
remove status_code from AD::ShowExceptions and useless requires
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware')
-rw-r--r--actionpack/lib/action_dispatch/middleware/show_exceptions.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/show_exceptions.rb b/actionpack/lib/action_dispatch/middleware/show_exceptions.rb
index 3d06214bf1..836136eb95 100644
--- a/actionpack/lib/action_dispatch/middleware/show_exceptions.rb
+++ b/actionpack/lib/action_dispatch/middleware/show_exceptions.rb
@@ -1,6 +1,5 @@
require 'action_dispatch/http/request'
require 'action_dispatch/middleware/exception_wrapper'
-require 'active_support/deprecation'
module ActionDispatch
# This middleware rescues any exception returned by the application
@@ -39,11 +38,6 @@ module ActionDispatch
private
- # Define this method because some plugins were monkey patching it.
- # Remove this after 3.2 is out with the other deprecations in this class.
- def status_code(*)
- end
-
def render_exception(env, exception)
wrapper = ExceptionWrapper.new(env, exception)
status = wrapper.status_code