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 | 82171c3406a790ac9740c439e2aafce21853e0a0 (patch) | |
| tree | 71139d061c87fbde7aefc12d9364339df6d228b8 /lib/custodian/protocoltest/ldap.rb | |
| parent | 1383d0f44f8ce524c297714bd288f95a548107ed (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/protocoltest/ldap.rb')
| -rw-r--r-- | lib/custodian/protocoltest/ldap.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/ldap.rb b/lib/custodian/protocoltest/ldap.rb index ba8b442..aee09e0 100644 --- a/lib/custodian/protocoltest/ldap.rb +++ b/lib/custodian/protocoltest/ldap.rb @@ -133,7 +133,7 @@ module Custodian        end        @error = "LDAP server test failed against '#{@host}' with username '#{@ldap_user}' and password '#{@ldap_pass}'" -      return false +      false      end  | 
