Browse Source

Removed redundant static method which caused compilation failure.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271537 13f79535-47bb-0310-9956-ffa450edef68
master
Jon Skeet 23 years ago
parent
commit
74a9468ea4
1 changed files with 0 additions and 17 deletions
  1. +0
    -17
      src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJWorkspaceScanner.java

+ 0
- 17
src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJWorkspaceScanner.java View File

@@ -173,23 +173,6 @@ class VAJWorkspaceScanner extends DirectoryScanner {
return packages;
}

/**
* Matches a string against a pattern. The pattern contains two special
* characters:
* '*' which means zero or more characters,
* '?' which means one and only one character.
*
* @param pattern the (non-null) pattern to match against
* @param str the (non-null) string that must be matched against the
* pattern
*
* @return <code>true</code> when the string matches against the pattern,
* <code>false</code> otherwise.
*/
protected static boolean match(String pattern, String str) {
return DirectoryScanner.match(pattern, str);
}

/**
* Scans the workspace for packages that match at least one include
* pattern, and don't match any exclude patterns.


Loading…
Cancel
Save