Skip to content

Commit 7f060e1

Browse files
Rubocop autocorrect
1 parent a40d203 commit 7f060e1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lib/net/ldap.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1257,10 +1257,10 @@ def search_subschema_entry
12571257
rs = search(:ignore_server_caps => true, :base => "",
12581258
:scope => SearchScope_BaseObject,
12591259
:attributes => [:subschemaSubentry])
1260-
return Net::LDAP::Entry.new unless (rs and rs.first)
1260+
return Net::LDAP::Entry.new unless rs and rs.first
12611261

12621262
subschema_name = rs.first.subschemasubentry
1263-
return Net::LDAP::Entry.new unless (subschema_name and subschema_name.first)
1263+
return Net::LDAP::Entry.new unless subschema_name and subschema_name.first
12641264

12651265
rs = search(:ignore_server_caps => true, :base => subschema_name.first,
12661266
:scope => SearchScope_BaseObject,

lib/net/ldap/auth_adapter/gss_spnego.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def bind(auth)
2020
require 'ntlm'
2121

2222
user, psw = [auth[:username] || auth[:dn], auth[:password]]
23-
raise Net::LDAP::BindingInformationInvalidError, "Invalid binding information" unless (user && psw)
23+
raise Net::LDAP::BindingInformationInvalidError, "Invalid binding information" unless user && psw
2424

2525
nego = proc do |challenge|
2626
t2_msg = NTLM::Message.parse(challenge)

lib/net/ldap/auth_adapter/sasl.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Sasl < Net::LDAP::AuthAdapter
3030
def bind(auth)
3131
mech, cred, chall = auth[:mechanism], auth[:initial_credential],
3232
auth[:challenge_response]
33-
raise Net::LDAP::BindingInformationInvalidError, "Invalid binding information" unless (mech && cred && chall)
33+
raise Net::LDAP::BindingInformationInvalidError, "Invalid binding information" unless mech && cred && chall
3434

3535
message_id = @connection.next_msgid
3636

lib/net/ldap/auth_adapter/simple.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def bind(auth)
1111
["", ""]
1212
end
1313

14-
raise Net::LDAP::BindingInformationInvalidError, "Invalid binding information" unless (user && psw)
14+
raise Net::LDAP::BindingInformationInvalidError, "Invalid binding information" unless user && psw
1515

1616
message_id = @connection.next_msgid
1717
request = [

0 commit comments

Comments
 (0)