Browse Source

accidental plural

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@383553 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 19 years ago
parent
commit
9fcc3d5b90
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/DirectoryScanner.java

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

@@ -1038,7 +1038,7 @@ public class DirectoryScanner
if (dir == null) { if (dir == null) {
throw new BuildException("dir must not be null."); throw new BuildException("dir must not be null.");
} else if (!dir.exists()) { } else if (!dir.exists()) {
throw new BuildException(dir + " doesn't exists.");
throw new BuildException(dir + " doesn't exist.");
} else if (!dir.isDirectory()) { } else if (!dir.isDirectory()) {
throw new BuildException(dir + " is not a directory."); throw new BuildException(dir + " is not a directory.");
} }


Loading…
Cancel
Save