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:
kohsuke 2008-03-27 23:27:57 +00:00
parent a731478d82
commit 9adebc8d29

View file

@ -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) {