Fixed compiler error in the DefaultFtpClientFactory impl
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user