From 6bc3f6a00fdefa1853572c65cb028496b068bcdd Mon Sep 17 00:00:00 2001 From: kohsuke Date: Thu, 27 Mar 2008 23:27:57 +0000 Subject: [PATCH] indentation fix git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@8046 71c3de6d-444a-0410-be80-ed276b4c234a --- core/src/main/java/hudson/security/LDAPSecurityRealm.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/security/LDAPSecurityRealm.java b/core/src/main/java/hudson/security/LDAPSecurityRealm.java index 330253a7c9..c3aeba0ebd 100644 --- a/core/src/main/java/hudson/security/LDAPSecurityRealm.java +++ b/core/src/main/java/hudson/security/LDAPSecurityRealm.java @@ -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) { -- GitLab