From 9fcc3d5b907d83496ed9f0870264b799a4c477c2 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Mon, 6 Mar 2006 14:58:27 +0000 Subject: [PATCH] accidental plural git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@383553 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/DirectoryScanner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/DirectoryScanner.java b/src/main/org/apache/tools/ant/DirectoryScanner.java index b34441cb1..9c381aa48 100644 --- a/src/main/org/apache/tools/ant/DirectoryScanner.java +++ b/src/main/org/apache/tools/ant/DirectoryScanner.java @@ -1038,7 +1038,7 @@ public class DirectoryScanner if (dir == null) { throw new BuildException("dir must not be null."); } else if (!dir.exists()) { - throw new BuildException(dir + " doesn't exists."); + throw new BuildException(dir + " doesn't exist."); } else if (!dir.isDirectory()) { throw new BuildException(dir + " is not a directory."); }