summaryrefslogtreecommitdiff
path: root/lib/custodian/alerts/redis-state.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 12:54:51 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 12:54:51 +0000
commit43959bccde198171cee796fdfbd82ae5a75a4378 (patch)
tree8bcc5e71787035d572ff7458220531a28cd2786e /lib/custodian/alerts/redis-state.rb
parent881ead73eca30cc11c885811276cd5310fe1e418 (diff)
Avoid arguments we're not using.
Having methods take arguments which are ignored is a misleading thing, prefix with "_" to make that explicit, or remove.
Diffstat (limited to 'lib/custodian/alerts/redis-state.rb')
-rw-r--r--lib/custodian/alerts/redis-state.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/custodian/alerts/redis-state.rb b/lib/custodian/alerts/redis-state.rb
index 03b31fa..7d9daa7 100644
--- a/lib/custodian/alerts/redis-state.rb
+++ b/lib/custodian/alerts/redis-state.rb
@@ -91,19 +91,6 @@ module Custodian
@redis.ltrim( "recent-tests", 0, 100 )
end
-
-
- #
- # Store a test-duration in redis
- #
- def duration( ms )
-
- return unless( @redis )
-
- # NOP
- end
-
-
register_alert_type "redis"
end