diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-11-27 15:16:12 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2017-11-27 15:16:12 +0900 |
commit | 7ce8a6af1b8fdbc9ee553bda3fd725bea169c2f3 (patch) | |
tree | 93585ac5afe26c7aa56c7190f258de967fdd0644 /activesupport/lib/active_support/values | |
parent | 28333d62ee15ec95cc4270c880c90f395e075b3b (diff) | |
download | rails-7ce8a6af1b8fdbc9ee553bda3fd725bea169c2f3.tar.gz rails-7ce8a6af1b8fdbc9ee553bda3fd725bea169c2f3.tar.bz2 rails-7ce8a6af1b8fdbc9ee553bda3fd725bea169c2f3.zip |
Enable `Style/DefWithParentheses` rubocop rule
The def with blank `()` was newly added in #31176, but we have not used
the blank `()` style in most part of our code base.
So I've enabled `Style/DefWithParentheses` to prevent to newly added the
code.
Diffstat (limited to 'activesupport/lib/active_support/values')
-rw-r--r-- | activesupport/lib/active_support/values/time_zone.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/values/time_zone.rb b/activesupport/lib/active_support/values/time_zone.rb index 07e37f5dd2..4d81ac939e 100644 --- a/activesupport/lib/active_support/values/time_zone.rb +++ b/activesupport/lib/active_support/values/time_zone.rb @@ -256,7 +256,7 @@ module ActiveSupport @country_zones[code] ||= load_country_zones(code) end - def clear() #:nodoc: + def clear #:nodoc: @lazy_zones_map = Concurrent::Map.new @country_zones = Concurrent::Map.new @zones = nil |