Browse Source

quote IO error scanning directory...

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@369536 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 19 years ago
parent
commit
81543c58c3
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/DirectoryScanner.java

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

@@ -1056,8 +1056,8 @@ public class DirectoryScanner
* (2) an IO error occurred (why doesn't it throw an exception
* then???)
*/
throw new BuildException("IO error scanning directory "
+ dir.getAbsolutePath());
throw new BuildException("IO error scanning directory '"
+ dir.getAbsolutePath() + "'");
}
if (!followSymlinks) {
Vector noLinks = new Vector();


Loading…
Cancel
Save