You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/09/27 15:50:41 UTC

[commons-io] branch master updated: Fix formatting.

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-io.git


The following commit(s) were added to refs/heads/master by this push:
     new 3862c74  Fix formatting.
3862c74 is described below

commit 3862c744eed29fb87035868c5a6dd636cc4a2406
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Sep 27 11:50:36 2020 -0400

    Fix formatting.
---
 src/main/java/org/apache/commons/io/filefilter/NotFileFilter.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/filefilter/NotFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/NotFileFilter.java
index 200fcf7..a7862e1 100644
--- a/src/main/java/org/apache/commons/io/filefilter/NotFileFilter.java
+++ b/src/main/java/org/apache/commons/io/filefilter/NotFileFilter.java
@@ -53,7 +53,7 @@ public class NotFileFilter extends AbstractFileFilter implements Serializable {
      */
     @Override
     public boolean accept(final File file) {
-        return ! filter.accept(file);
+        return !filter.accept(file);
     }
 
     /**