aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-08-13 16:50:22 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-08-13 16:50:31 -0700
commitbe5d1608cb57f86c53ee229f40f52aa8ffc2d86f (patch)
treeb318117de28aec16064c7080530012dfe3e9203b /activerecord
parenta7eb8d97a44d65c68df2eed61a5375a8d8da32f1 (diff)
downloadrails-be5d1608cb57f86c53ee229f40f52aa8ffc2d86f.tar.gz
rails-be5d1608cb57f86c53ee229f40f52aa8ffc2d86f.tar.bz2
rails-be5d1608cb57f86c53ee229f40f52aa8ffc2d86f.zip
converting to a symbol is not necessary
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/associations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index bf278ecce7..096709e166 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -1505,7 +1505,7 @@ module ActiveRecord
if reflection.through_reflection && reflection.source_reflection.belongs_to?
through = reflection.through_reflection
primary_key = reflection.source_reflection.primary_key_name
- send(through.name).select("DISTINCT #{through.quoted_table_name}.#{primary_key}").map! { |r| r.send(:"#{primary_key}") }
+ send(through.name).select("DISTINCT #{through.quoted_table_name}.#{primary_key}").map! { |r| r.send(primary_key) }
else
send(reflection.name).select("#{reflection.quoted_table_name}.#{reflection.klass.primary_key}").except(:includes).map! { |r| r.id }
end