diff options
author | Jon Leighton <j@jonathanleighton.com> | 2012-07-27 17:55:43 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2012-07-27 17:55:43 +0100 |
commit | d1099540aff6cf00f31dafbbceed1f9fc48780a2 (patch) | |
tree | 1059bf064644bf1fa5adf36ddeccae774804dc75 /activerecord/lib/active_record/associations | |
parent | b658cf1198bbeb0fb702cd10c6f491cd90cedba0 (diff) | |
download | rails-d1099540aff6cf00f31dafbbceed1f9fc48780a2.tar.gz rails-d1099540aff6cf00f31dafbbceed1f9fc48780a2.tar.bz2 rails-d1099540aff6cf00f31dafbbceed1f9fc48780a2.zip |
Deprecate Relation#all.
It has been moved to active_record_deprecated_finders.
Use #to_a instead.
Diffstat (limited to 'activerecord/lib/active_record/associations')
-rw-r--r-- | activerecord/lib/active_record/associations/has_many_through_association.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/has_many_through_association.rb b/activerecord/lib/active_record/associations/has_many_through_association.rb index 2683aaf5da..6c5a9d73a9 100644 --- a/activerecord/lib/active_record/associations/has_many_through_association.rb +++ b/activerecord/lib/active_record/associations/has_many_through_association.rb @@ -171,7 +171,7 @@ module ActiveRecord def find_target return [] unless target_reflection_has_associated_record? - scoped.all + scoped.to_a end # NOTE - not sure that we can actually cope with inverses here |