This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push: new 150268a Format nit. 150268a is described below commit 150268aad3e47bf311af7404d6c4c50ea93c13ac Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Oct 14 09:52:06 2020 -0400 Format nit. --- src/main/java/org/apache/commons/net/ftp/FTPHTTPClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/net/ftp/FTPHTTPClient.java b/src/main/java/org/apache/commons/net/ftp/FTPHTTPClient.java index 1ee8de7..de1c697 100644 --- a/src/main/java/org/apache/commons/net/ftp/FTPHTTPClient.java +++ b/src/main/java/org/apache/commons/net/ftp/FTPHTTPClient.java @@ -180,7 +180,7 @@ public class FTPHTTPClient extends FTPClient { socketIsReader = tunnelHandshake(host, port, _input_, _output_); } catch (final Exception e) { - final IOException ioe = new IOException("Could not connect to " + host+ " using port " + port); + final IOException ioe = new IOException("Could not connect to " + host + " using port " + port); ioe.initCause(e); throw ioe; }