mirror of
https://github.com/nicolabs/ldap-plugin.git
synced 2025-09-07 05:14:24 +02:00
indentation fix
git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@8046 71c3de6d-444a-0410-be80-ed276b4c234a Originally-Committed-As: 6bc3f6a00fdefa1853572c65cb028496b068bcdd
This commit is contained in:
parent
a731478d82
commit
9adebc8d29
|
@ -181,7 +181,7 @@ public class LDAPSecurityRealm extends SecurityRealm {
|
|||
InetAddress adrs = InetAddress.getByName(m.group(1));
|
||||
int port=389;
|
||||
if(m.group(2)!=null)
|
||||
port = Integer.parseInt(m.group(2));
|
||||
port = Integer.parseInt(m.group(2));
|
||||
Socket s = new Socket(adrs,port);
|
||||
s.close();
|
||||
} catch (NumberFormatException x) {
|
||||
|
|
Loading…
Reference in a new issue