Browse Source

whitespace

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@695380 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 17 years ago
parent
commit
917f222eec
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/main/org/apache/tools/ant/DirectoryScanner.java

+ 3
- 2
src/main/org/apache/tools/ant/DirectoryScanner.java View File

@@ -1359,8 +1359,9 @@ public class DirectoryScanner
name = (name.endsWith(File.separator)) ? name : name + File.separator;
for (int i = 0; i < excludes.length; i++) {
String e = excludes[i];
if (e.endsWith(SelectorUtils.DEEP_TREE_MATCH) && SelectorUtils.matchPath(
e.substring(0, e.length() - 2), name, isCaseSensitive())) {
if (e.endsWith(SelectorUtils.DEEP_TREE_MATCH)
&& SelectorUtils.matchPath(e.substring(0, e.length() - 2),
name, isCaseSensitive())) {
return true;
}
}


Loading…
Cancel
Save