Browse Source

Remove unused method

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273471 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 22 years ago
parent
commit
63623dae17
1 changed files with 1 additions and 13 deletions
  1. +1
    -13
      src/main/org/apache/tools/ant/DirectoryScanner.java

+ 1
- 13
src/main/org/apache/tools/ant/DirectoryScanner.java View File

@@ -365,18 +365,6 @@ public class DirectoryScanner implements FileScanner, SelectorScanner {
return SelectorUtils.match(pattern, str, isCaseSensitive);
}

/**
* Breaks a path up into a Vector of path elements, tokenizing on
* <code>File.separator</code>.
*
* @param path Path to tokenize. Must not be <code>null</code>.
*
* @return a Vector of path elements from the tokenized path
*/
private static Vector tokenizePath (String path) {
return SelectorUtils.tokenizePath(path);
}

/**
* Sets the base directory to be scanned. This is the directory which is
* scanned recursively. All '/' and '\' characters are replaced by
@@ -934,7 +922,7 @@ public class DirectoryScanner implements FileScanner, SelectorScanner {
/**
* <p>Returns the names of the directories which were selected out and
* therefore not ultimately included.</p>
*
*
* <p>The names are relative to the base directory. This involves
* performing a slow scan if one has not already been completed.</p>
*


Loading…
Cancel
Save