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/queue.rb | |
parent | 54b21cf54c51dfe40784a8096f84c7a80b015bd4 (diff) |
Use def with parentheses when there are parameters.
Diffstat (limited to 'lib/custodian/queue.rb')
-rw-r--r-- | lib/custodian/queue.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/queue.rb b/lib/custodian/queue.rb index 4517c61..e9ba830 100644 --- a/lib/custodian/queue.rb +++ b/lib/custodian/queue.rb @@ -23,7 +23,7 @@ module Custodian # # Class-Factory # - def self.create type + def self.create(type) case type when 'redis' RedisQueueType.new |