summaryrefslogtreecommitdiffstats
path: root/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/ftp/FTPSrv.java
diff options
context:
space:
mode:
Diffstat (limited to 'ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/ftp/FTPSrv.java')
-rw-r--r--ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/ftp/FTPSrv.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/ftp/FTPSrv.java b/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/ftp/FTPSrv.java
index 3d470b5..34baa30 100644
--- a/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/ftp/FTPSrv.java
+++ b/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/commons/ftp/FTPSrv.java
@@ -49,7 +49,6 @@ public class FTPSrv implements FTPInterface {
ftpClientConfig.setServerTimeZoneId(TimeZone.getDefault().getID());
this.ftpClient.setControlEncoding("GBK");
this.ftpClient.configure(ftpClientConfig);
-// ftpClient.setParserFactory(new ExtendsDefaultFTPFileEntryParserFactory());
if (encode != null && encode.length() > 0) {
ftpClient.setControlEncoding(encode);
@@ -138,7 +137,7 @@ public class FTPSrv implements FTPInterface {
String currdir = null;
try {
currdir = ftpClient.printWorkingDirectory();
- if (currdir.endsWith("/") == false) {
+ if (!currdir.endsWith("/")) {
currdir = currdir + "/";
}
FTPFile[] rfileList = null;
@@ -156,8 +155,7 @@ public class FTPSrv implements FTPInterface {
@Override
public String pwd() throws IOException {
- String returnValue = ftpClient.printWorkingDirectory();
- return returnValue;
+ return ftpClient.printWorkingDirectory();
}
}