diff options
Diffstat (limited to 'lib/custodian/alerts')
-rw-r--r-- | lib/custodian/alerts/mauve.rb | 4 | ||||
-rw-r--r-- | lib/custodian/alerts/redis-state.rb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/custodian/alerts/mauve.rb b/lib/custodian/alerts/mauve.rb index 947f019..47431d6 100644 --- a/lib/custodian/alerts/mauve.rb +++ b/lib/custodian/alerts/mauve.rb @@ -62,7 +62,7 @@ module Custodian # def raise - return unless(@loaded) + return unless @loaded # # Get ready to send to mauve. @@ -144,7 +144,7 @@ module Custodian # def clear - return unless(@loaded) + return unless @loaded # # Get ready to send to mauve. diff --git a/lib/custodian/alerts/redis-state.rb b/lib/custodian/alerts/redis-state.rb index bef0015..e486d9a 100644 --- a/lib/custodian/alerts/redis-state.rb +++ b/lib/custodian/alerts/redis-state.rb @@ -52,7 +52,7 @@ module Custodian # def raise - return unless(@redis) + return unless @redis tmp = {} tmp['time'] = Time.now.to_i @@ -75,7 +75,7 @@ module Custodian # def clear - return unless(@redis) + return unless @redis tmp = {} |