Fixed compiler error in the DefaultFtpClientFactory impl

This commit is contained in:
Josh Long
2010-08-18 07:08:43 +00:00
parent 78c28d5b0f
commit 770b001080
2 changed files with 2 additions and 1 deletions

View File

@@ -34,7 +34,7 @@ import java.net.SocketException;
*
* @author iwein
*/
public class DefaultFtpClientFactory implements FTPClientFactory {
public class DefaultFtpClientFactory implements FtpClientFactory {
private static final Log logger = LogFactory.getLog(FtpClientFactory.class);
private static final String DEFAULT_REMOTE_WORKING_DIRECTORY = "/";
private FTPClientConfig config;

View File

@@ -47,6 +47,7 @@ public class QueuedFtpClientPool implements FtpClientPool {
/**
* @param maxPoolSize the maximum size of the pool
*
*/
public QueuedFtpClientPool(int maxPoolSize, FtpClientFactory factory) {
Assert.notNull(factory);