diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2010-01-20 01:35:20 +0530 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2010-01-20 01:35:20 +0530 |
commit | d8c30723aad943da20fed36cceedba6225122a3a (patch) | |
tree | 1cff6aed5b1242fff60ec7111dda1d63f2d5ca9f /activerecord | |
parent | 1b78a3f8d5417708eb7040cc00722494eaa6a2b5 (diff) | |
download | rails-d8c30723aad943da20fed36cceedba6225122a3a.tar.gz rails-d8c30723aad943da20fed36cceedba6225122a3a.tar.bz2 rails-d8c30723aad943da20fed36cceedba6225122a3a.zip |
Named scopes dont need count() now that Relation#count handles all the cases
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/named_scope.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/named_scope.rb b/activerecord/lib/active_record/named_scope.rb index f1b8822892..2f3044d06b 100644 --- a/activerecord/lib/active_record/named_scope.rb +++ b/activerecord/lib/active_record/named_scope.rb @@ -176,11 +176,6 @@ module ActiveRecord end end - def count(*args) - options = args.extract_options! - options.present? ? apply_finder_options(options).count(*args) : super - end - def ==(other) other.respond_to?(:to_a) ? to_a == other.to_a : false end |