diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:20:38 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:20:38 +0000 |
commit | 16b766cff0984494c7b81c1efc08e6386ae819f8 (patch) | |
tree | 4d847286a6c1951783f6d02aeb1801f2f8745e5b /lib/custodian/alertfactory.rb | |
parent | e716a49dabe2c086a97e2d8b3cffe5cf369ad026 (diff) |
Use def with parentheses when there are parameters.
Diffstat (limited to 'lib/custodian/alertfactory.rb')
-rw-r--r-- | lib/custodian/alertfactory.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/alertfactory.rb b/lib/custodian/alertfactory.rb index 1baa0e3..5c69c74 100644 --- a/lib/custodian/alertfactory.rb +++ b/lib/custodian/alertfactory.rb @@ -61,7 +61,7 @@ module Custodian # # Register a new type of notifier - this must be called by our derived classes # - def self.register_alert_type name + def self.register_alert_type(name) @@subclasses[name] = self end |