diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:08:33 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:08:33 +0000 |
commit | 22b40326730fb7a4a8e2f5cb8d877f6a84494d02 (patch) | |
tree | c08f5ade5267c79cf3929bccc75dd4b704717500 /lib/custodian/settings.rb | |
parent | 5cc24f3a9a25a4214f1ee85a24960cce9f4f9516 (diff) |
Avoid "Array.new" and "Hash.new"
Instead use {} + ().
Diffstat (limited to 'lib/custodian/settings.rb')
-rw-r--r-- | lib/custodian/settings.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/settings.rb b/lib/custodian/settings.rb index 206e6a9..8bcf71c 100644 --- a/lib/custodian/settings.rb +++ b/lib/custodian/settings.rb @@ -38,7 +38,7 @@ module Custodian def _load( file = "/etc/custodian/custodian.cfg" ) @parsed = true - @settings = Hash.new() + @settings = {} # # The global configuration file. |