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 d57f3c7e Javadoc d57f3c7e is described below commit d57f3c7e2dccde72cbcb6849481f27feaea49401 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Dec 26 14:12:19 2023 -0500 Javadoc --- src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 c782041c..c1562df5 100644 --- a/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java +++ b/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java @@ -27,7 +27,7 @@ import java.nio.file.attribute.BasicFileAttributes; import org.apache.commons.io.file.PathFilter; /** - * An interface which brings the FileFilter, FilenameFilter, PathFilter, and PathMatcher interfaces together. + * An interface which brings the {@link FileFilter}, {@link FilenameFilter}, {@link PathFilter}, and {@link PathMatcher} interfaces together. * * @since 1.0 */ @@ -56,7 +56,7 @@ public interface IOFileFilter extends FileFilter, FilenameFilter, PathFilter, Pa * Defined in {@link java.io.FilenameFilter}. * </p> * - * @param dir the directory File to check. + * @param dir the directory File to check. * @param name the file name within the directory to check. * @return true if this file matches the test. */