Add Test Case
[vfc/nfvo/driver/ems.git] / ems / boco / src / main / java / org / onap / vfc / nfvo / emsdriver / commons / ftp / AFtpRemoteFile.java
index 5f7569d..3d3a27d 100644 (file)
@@ -15,8 +15,6 @@
  */
 package org.onap.vfc.nfvo.emsdriver.commons.ftp;
 
-import java.io.IOException;
-
 import org.apache.commons.net.ftp.FTPClient;
 import org.apache.commons.net.ftp.FTPFile;
 
@@ -25,8 +23,7 @@ public class AFtpRemoteFile implements RemoteFile{
        protected FTPFile ftpFile = null;
        protected String currDir = null;
        
-       public AFtpRemoteFile(FTPFile rfile, FTPClient ftpClient, String currDir) 
-               throws IOException {
+       public AFtpRemoteFile(FTPFile rfile, FTPClient ftpClient, String currDir){
                this.ftpClient = ftpClient;
                this.ftpFile = rfile;
                this.currDir = currDir;