1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #37704 from wagenet/patch-4

Relocate require in AS::Deprecation
This commit is contained in:
Ryuta Kamizono 2019-11-14 04:01:17 +09:00 committed by GitHub
commit c6ac55596e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,6 @@
# frozen_string_literal: true
require "singleton"
require "concurrent/atomic/thread_local_var"
module ActiveSupport
# \Deprecation specifies the API used by Rails to deprecate methods, instance
@ -22,6 +21,7 @@ module ActiveSupport
require "active_support/deprecation/method_wrappers"
require "active_support/deprecation/proxy_wrappers"
require "active_support/core_ext/module/deprecation"
require "concurrent/atomic/thread_local_var"
include Singleton
include InstanceDelegator