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 2021/12/07 04:01:21 UTC

[commons-io] branch master updated: Format tweak.

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 be83447  Format tweak.
be83447 is described below

commit be834471b11a98b42002cc129fc2c07e6a91b95c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Dec 6 23:01:19 2021 -0500

    Format tweak.
---
 src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java
index 555f774..b10c0c7 100644
--- a/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java
+++ b/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java
@@ -138,7 +138,7 @@ public class WildcardFileFilter extends AbstractFileFilter implements Serializab
      */
     public WildcardFileFilter(final String wildcard, final IOCase ioCase) {
         requireNonNull(wildcard, "wildcard");
-        this.wildcards = new String[] { wildcard };
+        this.wildcards = new String[] {wildcard};
         this.ioCase = IOCase.value(ioCase, IOCase.SENSITIVE);
     }