You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/09/29 20:50:01 UTC

svn commit: r1002804 - /commons/proper/io/trunk/src/java/org/apache/commons/io/FilenameUtils.java

Author: sebb
Date: Wed Sep 29 18:50:00 2010
New Revision: 1002804

URL: http://svn.apache.org/viewvc?rev=1002804&view=rev
Log:
Document that "*?" does not work properly currently

Modified:
    commons/proper/io/trunk/src/java/org/apache/commons/io/FilenameUtils.java

Modified: commons/proper/io/trunk/src/java/org/apache/commons/io/FilenameUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/java/org/apache/commons/io/FilenameUtils.java?rev=1002804&r1=1002803&r2=1002804&view=diff
==============================================================================
--- commons/proper/io/trunk/src/java/org/apache/commons/io/FilenameUtils.java (original)
+++ commons/proper/io/trunk/src/java/org/apache/commons/io/FilenameUtils.java Wed Sep 29 18:50:00 2010
@@ -1185,6 +1185,7 @@ public class FilenameUtils {
      * wildcardMatch("c.txt", "*.???")      --> true
      * wildcardMatch("c.txt", "*.????")     --> false
      * </pre>
+     * N.B. the sequence "*?" does not work properly at present in match strings.
      * 
      * @param filename  the filename to match on
      * @param wildcardMatcher  the wildcard string to match against
@@ -1210,6 +1211,7 @@ public class FilenameUtils {
      * wildcardMatch("c.txt", "*.???")      --> true
      * wildcardMatch("c.txt", "*.????")     --> false
      * </pre>
+     * N.B. the sequence "*?" does not work properly at present in match strings.
      * 
      * @param filename  the filename to match on
      * @param wildcardMatcher  the wildcard string to match against
@@ -1226,6 +1228,7 @@ public class FilenameUtils {
      * <p>
      * The wildcard matcher uses the characters '?' and '*' to represent a
      * single or multiple (zero or more) wildcard characters.
+     * N.B. the sequence "*?" does not work properly at present in match strings.
      * 
      * @param filename  the filename to match on
      * @param wildcardMatcher  the wildcard string to match against