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 e921bc6 Javadoc fix. e921bc6 is described below commit e921bc6a8c63dc6b33e8e220aa28084bb2434222 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Fri Apr 19 12:58:15 2019 -0400 Javadoc fix. --- .../java/org/apache/commons/io/filefilter/WildcardFileFilter.java | 5 ++++- 1 file changed, 4 insertions(+), 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 e6f695c..7d8226e 100644 --- a/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java +++ b/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java @@ -28,14 +28,17 @@ import org.apache.commons.io.IOCase; * <p> * This filter selects files and directories based on one or more wildcards. * Testing is case-sensitive by default, but this can be configured. + * </p> * <p> * The wildcard matcher uses the characters '?' and '*' to represent a * single or multiple wildcard characters. * This is the same as often found on Dos/Unix command lines. * The check is case-sensitive by default. - * See {@link FilenameUtils#wildcardMatchOnSystem} for more information. + * See {@link FilenameUtils#wildcardMatchOnSystem(String,String)} for more information. + * </p> * <p> * For example: + * </p> * <pre> * File dir = new File("."); * FileFilter fileFilter = new WildcardFileFilter("*test*.java~*~");