diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:14:15 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:14:15 +0000 |
commit | 3acb2e1be6ddeb421efbd1b3598c1ed547d1b38b (patch) | |
tree | b07562ee35bcdfa714e906c40886168a80436bb9 /lib/custodian/util/ping.rb | |
parent | 5a64aa7f443625305701f4db1e16340a87cb0b76 (diff) |
Avoid redudent returns.
The last expression of a method is the return value. So:
def foo; false ; end
Is the same as:
def foo; return false; end
Diffstat (limited to 'lib/custodian/util/ping.rb')
-rw-r--r-- | lib/custodian/util/ping.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/util/ping.rb b/lib/custodian/util/ping.rb index 4056803..771cfd6 100644 --- a/lib/custodian/util/ping.rb +++ b/lib/custodian/util/ping.rb @@ -85,7 +85,7 @@ module Custodian else puts "ERROR: Resolved to neither an IPv6 or IPv4 address." end - return false + false end end |