From 7c7b9d023cd466c1771068badc020dab36beb553 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Thu, 5 Apr 2012 14:49:11 -0500 Subject: Removed whitespaces from Java code. Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134 --- base/common/src/com/netscape/cmscore/ldapconn/LdapAuthInfo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base/common/src/com/netscape/cmscore/ldapconn/LdapAuthInfo.java') diff --git a/base/common/src/com/netscape/cmscore/ldapconn/LdapAuthInfo.java b/base/common/src/com/netscape/cmscore/ldapconn/LdapAuthInfo.java index b1af367b9..c1822113d 100644 --- a/base/common/src/com/netscape/cmscore/ldapconn/LdapAuthInfo.java +++ b/base/common/src/com/netscape/cmscore/ldapconn/LdapAuthInfo.java @@ -108,7 +108,7 @@ public class LdapAuthInfo implements ILdapAuthInfo { /** * initialize this class from the config store, and verify the password. - * + * * @param host The host that the directory server is running on. * This will be used to verify the password by attempting to connect. * If it is null, the password will not be verified. @@ -258,7 +258,7 @@ public class LdapAuthInfo implements ILdapAuthInfo { /** * get authentication type. - * + * * @return one of:
* LdapAuthInfo.LDAP_AUTHTYPE_BASICAUTH or * LdapAuthInfo.LDAP_AUTHTYPE_SSLCLIENTAUTH @@ -269,7 +269,7 @@ public class LdapAuthInfo implements ILdapAuthInfo { /** * get params for authentication - * + * * @return array of parameters for this authentication. */ public String[] getParms() { -- cgit