INT-1520 rename AntPattern* to AntPath* to match collaborator class name

This commit is contained in:
Iwein Fuld
2010-10-15 11:29:26 +02:00
parent 2bc8b31255
commit 092de55242
2 changed files with 6 additions and 6 deletions

View File

@@ -8,12 +8,12 @@ import java.io.File;
/**
* @author Iwein Fuld
*/
public class AntPatternFileListFilter extends AbstractEntryListFilter<File> {
public class AntPathFileListFilter extends AbstractEntryListFilter<File> {
private final AntPathMatcher matcher = new AntPathMatcher();
private final String path;
public AntPatternFileListFilter(String path) {
public AntPathFileListFilter(String path) {
this.path = path;
}