Upgrade dependencies; fix deprecations

* Prepare for release
This commit is contained in:
Artem Bilan
2020-09-16 11:02:34 -04:00
parent e154067a1f
commit be82e572f5
6 changed files with 42 additions and 34 deletions

View File

@@ -494,7 +494,7 @@ public abstract class AbstractInboundFileSynchronizer<F>
throw new IllegalStateException("Could not sent last modified on file: " + localFile);
}
String hostPort = session.getHostPort();
int colonIndex = hostPort.lastIndexOf(":");
int colonIndex = hostPort.lastIndexOf(':');
String host = hostPort.substring(0, colonIndex);
String port = hostPort.substring(colonIndex + 1);
try {