From 3acb2e1be6ddeb421efbd1b3598c1ed547d1b38b Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Mon, 9 Mar 2015 13:14:15 +0000 Subject: 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 --- lib/custodian/protocoltest/dns.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/custodian/protocoltest/dns.rb') diff --git a/lib/custodian/protocoltest/dns.rb b/lib/custodian/protocoltest/dns.rb index 4bdbd83..c544b38 100644 --- a/lib/custodian/protocoltest/dns.rb +++ b/lib/custodian/protocoltest/dns.rb @@ -118,7 +118,7 @@ module Custodian @error = "DNS server *#{@host}* (#{@server_ip}) returned the wrong records for @#{resolve_name} IN #{resolve_type}@.\n\nWe expected '#{resolve_expected.join(",")}', but we received '#{results.join(",")}'\n" end - return @error.nil? + @error.nil? end -- cgit v1.2.1