Removed check for empty configuration section for FTP as it disables the server. Only disable the

server if the configuration section is not present. (AR-397)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2279 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gary Spencer
2006-02-01 17:43:31 +00:00
parent ac583e0765
commit 5792f7ae2d

View File

@@ -1096,7 +1096,7 @@ public class ServerConfiguration
{
// If the configuration section is not valid then FTP is disabled
if ( config == null || config.getConfigElements().isEmpty())
if ( config == null)
{
setFTPServerEnabled(false);
return;