From 51b547e2cd1ded7a30df2b6bae4dd7ba3cff99c2 Mon Sep 17 00:00:00 2001 From: Genadi Samokovarov Date: Mon, 29 Feb 2016 16:54:52 +0200 Subject: Drop Action Controller require in ActionDispatch::ExceptionWrapper We only reference the Action Controller error classes by name in ActionDispatch::ExceptionWrapper, so there is no need to explicitly require them. It drops a tiny coupling between Action Dispatch and Action Controller, so it makes me feel warm inside. We still have a lot of others AC requires in the AD code base, but here, we can save it. [ci skip] --- actionpack/lib/action_dispatch/middleware/exception_wrapper.rb | 1 - 1 file changed, 1 deletion(-) (limited to 'actionpack') diff --git a/actionpack/lib/action_dispatch/middleware/exception_wrapper.rb b/actionpack/lib/action_dispatch/middleware/exception_wrapper.rb index 3b61824cc9..59edc66086 100644 --- a/actionpack/lib/action_dispatch/middleware/exception_wrapper.rb +++ b/actionpack/lib/action_dispatch/middleware/exception_wrapper.rb @@ -1,4 +1,3 @@ -require 'action_controller/metal/exceptions' require 'active_support/core_ext/module/attribute_accessors' require 'rack/utils' -- cgit v1.2.3