aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2012-01-23 10:02:41 -0500
committerArun Agrawal <arunagw@gmail.com>2012-01-23 10:02:41 -0500
commit88eede292945895f8baf59d1612dcc1fce8b7369 (patch)
tree8d839aba542353f3caaa0774b02421b15a82222c /activerecord/lib
parentadb75680db377bf9026dd26f87200267eb786a2d (diff)
downloadrails-88eede292945895f8baf59d1612dcc1fce8b7369.tar.gz
rails-88eede292945895f8baf59d1612dcc1fce8b7369.tar.bz2
rails-88eede292945895f8baf59d1612dcc1fce8b7369.zip
Unused var removed
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/counter_cache.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/counter_cache.rb b/activerecord/lib/active_record/counter_cache.rb
index c9c46b8d4f..ee0b0c7fab 100644
--- a/activerecord/lib/active_record/counter_cache.rb
+++ b/activerecord/lib/active_record/counter_cache.rb
@@ -19,7 +19,7 @@ module ActiveRecord
counters.each do |association|
has_many_association = reflect_on_association(association.to_sym)
- expected_name = if has_many_association.options[:as]
+ if has_many_association.options[:as]
has_many_association.options[:as].to_s.classify
else
self.name