diff options
| author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 12:52:08 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 12:52:08 +0000 | 
| commit | 262c7d9360b23cb06d60f0b0692379555e691274 (patch) | |
| tree | 4d8258b06c38bf1467e773b61bbb1ab57780e945 /lib/custodian/worker.rb | |
| parent | 2c1d04d0042994f65816f592e50709637795f31f (diff) | |
Avoid redundent ".to_s" methods.
These are not required if the argument is string already, or has
a _to_s method which will be automatically invoked by magic.
Diffstat (limited to 'lib/custodian/worker.rb')
| -rw-r--r-- | lib/custodian/worker.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/worker.rb b/lib/custodian/worker.rb index df9e117..b411c00 100644 --- a/lib/custodian/worker.rb +++ b/lib/custodian/worker.rb @@ -148,7 +148,7 @@ module Custodian        begin -        log_message( "Acquired job: #{test.to_s}" ) +        log_message( "Acquired job: #{test}" )          #          # The count of times this test has run, the result, and the start-time  | 
