diff options
author | Nikolai B <nikolai-b@users.noreply.github.com> | 2018-04-25 17:14:07 +0100 |
---|---|---|
committer | Nikolai B <nikolai-b@users.noreply.github.com> | 2018-04-25 17:14:07 +0100 |
commit | e4df08fadb2099cf1706cbdb65a5dd0fbd82fa90 (patch) | |
tree | 0bfe25d796bc1e3ca2b64d8bad2190b514ca3df2 | |
parent | c81a7fcf76663e6d189792d6eed57b1162199635 (diff) | |
download | rails-e4df08fadb2099cf1706cbdb65a5dd0fbd82fa90.tar.gz rails-e4df08fadb2099cf1706cbdb65a5dd0fbd82fa90.tar.bz2 rails-e4df08fadb2099cf1706cbdb65a5dd0fbd82fa90.zip |
Remove math module from count
Not required after https://github.com/rails/arel/pull/449
-rw-r--r-- | activerecord/lib/arel/nodes/count.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/activerecord/lib/arel/nodes/count.rb b/activerecord/lib/arel/nodes/count.rb index c8e409ea8b..880464639d 100644 --- a/activerecord/lib/arel/nodes/count.rb +++ b/activerecord/lib/arel/nodes/count.rb @@ -3,8 +3,6 @@ module Arel # :nodoc: all module Nodes class Count < Arel::Nodes::Function - include Math - def initialize(expr, distinct = false, aliaz = nil) super(expr, aliaz) @distinct = distinct |