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 | 6d95fd2e13f23037bbae89b5627caf53aa346e73 (patch) | |
tree | d4ab425a04a608fea0c982a930db5d5ddf07118b /lib/custodian/alertfactory.rb | |
parent | 54b21cf54c51dfe40784a8096f84c7a80b015bd4 (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 |