aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_association.rb
diff options
context:
space:
mode:
authorCheah Chu Yeow <chuyeow@gmail.com>2008-06-26 10:21:53 +0800
committerJeremy Kemper <jeremy@bitsweat.net>2008-07-09 10:42:30 -0700
commitce4a1bb8538bd7cc5ee3cbf1156dc587482a7839 (patch)
tree0730d2ed46c4dd77b5ed141d37e9e41952b5c68b /activerecord/lib/active_record/associations/has_many_association.rb
parent11252e35b1756b025d8778c151f9f9a24057d1b1 (diff)
downloadrails-ce4a1bb8538bd7cc5ee3cbf1156dc587482a7839.tar.gz
rails-ce4a1bb8538bd7cc5ee3cbf1156dc587482a7839.tar.bz2
rails-ce4a1bb8538bd7cc5ee3cbf1156dc587482a7839.zip
Remove some Symbol#to_proc usage in runtime code. [#484 state:resolved]
Diffstat (limited to 'activerecord/lib/active_record/associations/has_many_association.rb')
-rw-r--r--activerecord/lib/active_record/associations/has_many_association.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations/has_many_association.rb b/activerecord/lib/active_record/associations/has_many_association.rb
index cb58f0be15..e6fa15c173 100644
--- a/activerecord/lib/active_record/associations/has_many_association.rb
+++ b/activerecord/lib/active_record/associations/has_many_association.rb
@@ -61,9 +61,9 @@ module ActiveRecord
def delete_records(records)
case @reflection.options[:dependent]
when :destroy
- records.each(&:destroy)
+ records.each { |r| r.destroy }
when :delete_all
- @reflection.klass.delete(records.map(&:id))
+ @reflection.klass.delete(records.map { |record| record.id })
else
ids = quoted_record_ids(records)
@reflection.klass.update_all(