diff options
author | James McKinney <james@slashpoundbang.com> | 2015-05-21 14:56:53 +0200 |
---|---|---|
committer | James McKinney <james@slashpoundbang.com> | 2015-05-21 14:56:53 +0200 |
commit | 7b2757e7be4ae2ddf0fa7cb694faf5799340f003 (patch) | |
tree | 3595987c0d46c8a90f522b581daa94415407e38e /lib/strip_attributes/test | |
parent | dd289908964c8d60e33ce71724dc9e36c3beb765 (diff) |
Remove all optional parentheses for method calls in Ruby
Diffstat (limited to 'lib/strip_attributes/test')
-rw-r--r-- | lib/strip_attributes/test/test_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strip_attributes/test/test_helper.rb b/lib/strip_attributes/test/test_helper.rb index b69440715..6a4f6136a 100644 --- a/lib/strip_attributes/test/test_helper.rb +++ b/lib/strip_attributes/test/test_helper.rb @@ -10,7 +10,7 @@ require "#{PLUGIN_ROOT}/init" class ActiveRecord::Base alias_method :save, :valid? - def self.columns() + def self.columns @columns ||= [] end |