Skip to content

Commit 3e46213

Browse files
committed
Javadoc
1 parent 1b611a9 commit 3e46213

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/io/FilenameUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1556,8 +1556,8 @@ private static char toSeparator(final boolean unixSeparator) {
15561556
* </pre>
15571557
* The sequence "*?" does not work properly at present in match strings.
15581558
*
1559-
* @param fileName the file name to match on.
1560-
* @param wildcardMatcher the wildcard string to match against.
1559+
* @param fileName the file name to match on, may be null.
1560+
* @param wildcardMatcher the wildcard string to match against, may be null.
15611561
* @return true if the file name matches the wildcard string.
15621562
* @see IOCase#SENSITIVE
15631563
*/
@@ -1573,8 +1573,8 @@ public static boolean wildcardMatch(final String fileName, final String wildcard
15731573
* single or multiple (zero or more) wildcard characters.
15741574
* The sequence "*?" does not work properly at present in match strings.
15751575
*
1576-
* @param fileName the file name to match on.
1577-
* @param wildcardMatcher the wildcard string to match against.
1576+
* @param fileName the file name to match on, may be null.
1577+
* @param wildcardMatcher the wildcard string to match against, may be null.
15781578
* @param ioCase what case sensitivity rule to use, null means case-sensitive.
15791579
* @return true if the file name matches the wildcard string.
15801580
* @since 1.3

0 commit comments

Comments
 (0)