From 1a4bbaf106f09c8a67c7e4da109a46449c06374f Mon Sep 17 00:00:00 2001 From: Jon Leighton Date: Mon, 24 Jan 2011 22:14:32 +0000 Subject: Use scoped.first and scoped.last instead of find(:first, ...) and find(:last, ...) --- activerecord/lib/active_record/associations/association_collection.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activerecord/lib/active_record') diff --git a/activerecord/lib/active_record/associations/association_collection.rb b/activerecord/lib/active_record/associations/association_collection.rb index 0ab2b4fb9d..2b0ab32f34 100644 --- a/activerecord/lib/active_record/associations/association_collection.rb +++ b/activerecord/lib/active_record/associations/association_collection.rb @@ -39,7 +39,7 @@ module ActiveRecord # Fetches the first one using SQL if possible. def first(*args) if fetch_first_or_last_using_find?(args) - find(:first, *args) + scoped.first(*args) else load_target unless loaded? args.shift if args.first.kind_of?(Hash) && args.first.empty? @@ -50,7 +50,7 @@ module ActiveRecord # Fetches the last one using SQL if possible. def last(*args) if fetch_first_or_last_using_find?(args) - find(:last, *args) + scoped.last(*args) else load_target unless loaded? @target.last(*args) -- cgit v1.2.3