Skip to content

Commit fe44f34

Browse files
committed
moved WildcardUtils up a directory as it is used in two sub-packages of IO
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@140620 13f79535-47bb-0310-9956-ffa450edef68
1 parent dfb79b3 commit fe44f34

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/java/org/apache/commons/io/find/WildcardUtils.java renamed to src/java/org/apache/commons/io/WildcardUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.apache.commons.io.find;
16+
package org.apache.commons.io;
1717

1818
import java.util.ArrayList;
1919

src/java/org/apache/commons/io/filefilter/WildcardFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import java.io.File;
44
import java.util.List;
5-
import org.apache.commons.io.find.WildcardUtils;
5+
import org.apache.commons.io.WildcardUtils;
66

77
/**
88
* Filters files using supplied wildcard(s).

src/java/org/apache/commons/io/find/FindingFilter.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
import java.util.regex.Pattern;
2626
import java.util.regex.Matcher;
2727

28+
import org.apache.commons.io.WildcardUtils;
29+
2830
/**
2931
* This is where most of the find functionality occurs. Nearly every option
3032
* to find is mapped to a FileFilter, which are then chained together inside

src/test/org/apache/commons/io/find/WildcardUtilsTest.java renamed to src/test/org/apache/commons/io/WildcardUtilsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.apache.commons.io.find;
16+
package org.apache.commons.io;
1717

1818
import junit.framework.Test;
1919
import junit.framework.TestCase;

0 commit comments

Comments
 (0)