Skip to content

Commit e921bc6

Browse files
author
Gary Gregory
committed
Javadoc fix.
1 parent 5799ec5 commit e921bc6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,17 @@
2828
* <p>
2929
* This filter selects files and directories based on one or more wildcards.
3030
* Testing is case-sensitive by default, but this can be configured.
31+
* </p>
3132
* <p>
3233
* The wildcard matcher uses the characters '?' and '*' to represent a
3334
* single or multiple wildcard characters.
3435
* This is the same as often found on Dos/Unix command lines.
3536
* The check is case-sensitive by default.
36-
* See {@link FilenameUtils#wildcardMatchOnSystem} for more information.
37+
* See {@link FilenameUtils#wildcardMatchOnSystem(String,String)} for more information.
38+
* </p>
3739
* <p>
3840
* For example:
41+
* </p>
3942
* <pre>
4043
* File dir = new File(".");
4144
* FileFilter fileFilter = new WildcardFileFilter("*test*.java~*~");

0 commit comments

Comments
 (0)