diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-08-19 08:12:05 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-08-19 08:16:21 +0900 |
commit | b2c1e29c14b91b290b30c928c63253d1555e0fd9 (patch) | |
tree | 17b4573dbc9c4d4591985b45c0af3c9701666be6 /activerecord/lib/active_record/associations/builder | |
parent | 9270c6d7fc09b3a1fbbb410f60b9d3829a406c07 (diff) | |
download | rails-b2c1e29c14b91b290b30c928c63253d1555e0fd9.tar.gz rails-b2c1e29c14b91b290b30c928c63253d1555e0fd9.tar.bz2 rails-b2c1e29c14b91b290b30c928c63253d1555e0fd9.zip |
Enable Style/ParenthesesAroundCondition cop
To prevent style check in review like https://github.com/rails/rails/pull/33608#discussion_r211087605.
Diffstat (limited to 'activerecord/lib/active_record/associations/builder')
-rw-r--r-- | activerecord/lib/active_record/associations/builder/belongs_to.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/builder/belongs_to.rb b/activerecord/lib/active_record/associations/builder/belongs_to.rb index b5fb0092d7..0166ed98ca 100644 --- a/activerecord/lib/active_record/associations/builder/belongs_to.rb +++ b/activerecord/lib/active_record/associations/builder/belongs_to.rb @@ -34,7 +34,7 @@ module ActiveRecord::Associations::Builder # :nodoc: foreign_key = reflection.foreign_key cache_column = reflection.counter_cache_column - if (@_after_replace_counter_called ||= false) + if @_after_replace_counter_called ||= false @_after_replace_counter_called = false elsif association(reflection.name).target_changed? if reflection.polymorphic? |