Fixing build. removing windows chars

This commit is contained in:
Prasanna Santhanam 2011-12-05 10:41:24 +05:30
parent fcb9db7802
commit e365e64afe
1 changed files with 1 additions and 1 deletions

View File

@ -1248,7 +1248,7 @@ public class ConfigurationManagerImpl implements ConfigurationManager, Configura
cvo = _configDao.findByName(LDAPParams.usessl.toString());
if (cvo==null){
cvo = new ConfigurationVO("Advanced","DEFAULT", "management-server", LDAPParams.usessl.toString(), null, "Check Use SSL if the external LDAP server is configured for LDAP over SSL.");
cvo = new ConfigurationVO("Advanced","DEFAULT", "management-server", LDAPParams.usessl.toString(), null, "Check Use SSL if the external LDAP server is configured for LDAP over SSL.");
}
cvo.setValue(useSSL.toString()); _configDao.persist(cvo);