diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 12:50:57 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 12:50:57 -0300 |
commit | 6489a84eb69162ccefac106d08bae1c31a2b4fa5 (patch) | |
tree | 82a68de73f8ee6eeb8b80608945e1222714a420c | |
parent | 526e5e845a552abadf7e718ed1f1c5e0bf7c8876 (diff) | |
parent | adfeeb01e798278ad43b67d882bdd1f54aff3b3f (diff) | |
download | rails-6489a84eb69162ccefac106d08bae1c31a2b4fa5.tar.gz rails-6489a84eb69162ccefac106d08bae1c31a2b4fa5.tar.bz2 rails-6489a84eb69162ccefac106d08bae1c31a2b4fa5.zip |
Merge pull request #18327 from claudiob/remove-unneeded-require
Remove unneeded `require 'as/deprecation'`
-rw-r--r-- | actionview/lib/action_view/helpers/sanitize_helper.rb | 1 | ||||
-rw-r--r-- | activerecord/lib/active_record/relation/delegation.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/test_case.rb | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/actionview/lib/action_view/helpers/sanitize_helper.rb b/actionview/lib/action_view/helpers/sanitize_helper.rb index 7cb55cc214..e72e85ee5f 100644 --- a/actionview/lib/action_view/helpers/sanitize_helper.rb +++ b/actionview/lib/action_view/helpers/sanitize_helper.rb @@ -1,5 +1,4 @@ require 'active_support/core_ext/object/try' -require 'active_support/deprecation' require 'rails-html-sanitizer' module ActionView diff --git a/activerecord/lib/active_record/relation/delegation.rb b/activerecord/lib/active_record/relation/delegation.rb index 50f4d5c7ab..d4a8823cfe 100644 --- a/activerecord/lib/active_record/relation/delegation.rb +++ b/activerecord/lib/active_record/relation/delegation.rb @@ -1,6 +1,5 @@ require 'set' require 'active_support/concern' -require 'active_support/deprecation' module ActiveRecord module Delegation # :nodoc: diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb index aa71db3c56..c7d6c62129 100644 --- a/activesupport/lib/active_support/test_case.rb +++ b/activesupport/lib/active_support/test_case.rb @@ -9,7 +9,6 @@ require 'active_support/testing/isolation' require 'active_support/testing/constant_lookup' require 'active_support/testing/time_helpers' require 'active_support/core_ext/kernel/reporting' -require 'active_support/deprecation' module ActiveSupport class TestCase < ::Minitest::Test |