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/04/12 16:01:55 UTC

[commons-io] branch master updated: Javadoc.

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 e530687  Javadoc.
e530687 is described below

commit e53068779bc384714a9cfc901223db184512b8be
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Apr 12 12:01:51 2020 -0400

    Javadoc.
---
 src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java
index 70fdb30..e3b5d0a 100644
--- a/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java
+++ b/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java
@@ -29,6 +29,9 @@ import java.io.FilenameFilter;
  */
 public interface IOFileFilter extends FileFilter, FilenameFilter {
 
+    /**
+     * An empty String array.
+     */
     String[] EMPTY_STRING_ARRAY = new String[0];
 
     /**