Beispiel #1
0
 @Override
 public void clear() {
   if (sftp != null)
     try {
       sftp.close();
     } catch (IOException e) {
       Throwables.propagate(e);
     }
 }
Beispiel #2
0
 @Override
 public void close() throws IOException {
   super.close();
   if (sftp != null) sftp.close();
 }
Beispiel #3
0
 @Override
 public void clear() throws IOException {
   if (sftp != null) sftp.close();
 }