diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-06-26 17:26:02 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-06-26 17:26:02 +0900 |
commit | cc0e84f9bfa89750ceca38db47ce5657cc373c3d (patch) | |
tree | ad85542a16a38db1b0249a796ca221f55808ed78 /activerecord/lib | |
parent | 43ffbd1fabfc96b42e95906821483aeb401d6b2d (diff) | |
download | rails-cc0e84f9bfa89750ceca38db47ce5657cc373c3d.tar.gz rails-cc0e84f9bfa89750ceca38db47ce5657cc373c3d.tar.bz2 rails-cc0e84f9bfa89750ceca38db47ce5657cc373c3d.zip |
Remove `ActiveSupport::Concern` from `ActiveRecord::Aggregations`
`include Aggregations` no longer needs to invoke
`extend Aggregations::ClassMethods` since 657060b.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/aggregations.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb index 7286837ac7..3250e29b82 100644 --- a/activerecord/lib/active_record/aggregations.rb +++ b/activerecord/lib/active_record/aggregations.rb @@ -3,8 +3,6 @@ module ActiveRecord # See ActiveRecord::Aggregations::ClassMethods for documentation module Aggregations - extend ActiveSupport::Concern - def initialize_dup(*) # :nodoc: @aggregation_cache = {} super |