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 2022/06/14 14:20:46 UTC

[commons-io] branch master updated: [IO-763]Javadoc] o.a.c.i.filefilter.FileFilterUtils doc does not match impl: missing some file filters

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 af54b61e [IO-763]Javadoc] o.a.c.i.filefilter.FileFilterUtils doc does not match impl: missing some file filters
af54b61e is described below

commit af54b61efbb57be145ef4d75536d2cc0e43a6202
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Jun 14 10:20:40 2022 -0400

    [IO-763]Javadoc] o.a.c.i.filefilter.FileFilterUtils doc does not match
    impl: missing some file filters
    
    Update Javadoc
---
 src/changes/changes.xml                                             | 3 +++
 src/main/java/org/apache/commons/io/filefilter/FileFilterUtils.java | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 5ce75a7b..206721fc 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -174,6 +174,9 @@ The <action> type attribute can be add,update,fix,remove.
       <action issue="IO-773" dev="ggregory" type="fix" due-to="Dominik Reinarz, Gary Gregory">
         RegexFileFilter is no longer Serializable.
       </action>
+      <action issue="IO-763" dev="ggregory" type="fix" due-to="Richard Adams, Gary Gregory">
+        [Javadoc] o.a.c.i.filefilter.FileFilterUtils doc does not match impl: missing some file filters
+      </action>
       <!-- ADD -->
       <action type="add" dev="ggregory" due-to="Gary Gregory">
         Add GitHub coverage.yml.
diff --git a/src/main/java/org/apache/commons/io/filefilter/FileFilterUtils.java b/src/main/java/org/apache/commons/io/filefilter/FileFilterUtils.java
index 212dbb6d..37c56da5 100644
--- a/src/main/java/org/apache/commons/io/filefilter/FileFilterUtils.java
+++ b/src/main/java/org/apache/commons/io/filefilter/FileFilterUtils.java
@@ -36,7 +36,7 @@ import org.apache.commons.io.FileUtils;
 import org.apache.commons.io.IOCase;
 
 /**
- * Useful utilities for working with file filters. It provides access to all
+ * Useful utilities for working with file filters. It provides access to most
  * file filter implementations in this package so you don't have to import
  * every class you use.
  *