diff options
| author | Arun Agrawal <arunagw@gmail.com> | 2012-01-23 10:02:41 -0500 |
|---|---|---|
| committer | Arun Agrawal <arunagw@gmail.com> | 2012-01-23 10:02:41 -0500 |
| commit | 88eede292945895f8baf59d1612dcc1fce8b7369 (patch) | |
| tree | 8d839aba542353f3caaa0774b02421b15a82222c | |
| parent | adb75680db377bf9026dd26f87200267eb786a2d (diff) | |
| download | rails-88eede292945895f8baf59d1612dcc1fce8b7369.tar.gz rails-88eede292945895f8baf59d1612dcc1fce8b7369.tar.bz2 rails-88eede292945895f8baf59d1612dcc1fce8b7369.zip | |
Unused var removed
| -rw-r--r-- | activerecord/lib/active_record/counter_cache.rb | 2 |
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 |
