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 000db67 Formatting nit. 000db67 is described below commit 000db67955c14c574482d840aafe8ade96b3854f Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Dec 14 15:52:48 2020 -0500 Formatting nit. --- src/main/java/org/apache/commons/net/ftp/FTPListParseEngine.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/net/ftp/FTPListParseEngine.java b/src/main/java/org/apache/commons/net/ftp/FTPListParseEngine.java index ba99e0f..f4734af 100644 --- a/src/main/java/org/apache/commons/net/ftp/FTPListParseEngine.java +++ b/src/main/java/org/apache/commons/net/ftp/FTPListParseEngine.java @@ -272,7 +272,7 @@ public class FTPListParseEngine { if (temp == null && saveUnparseableEntries) { temp = new FTPFile(entry); } - if (filter.accept(temp)){ + if (filter.accept(temp)) { tmpResults.add(temp); } }