From 591f197bdd93e2e248f881f572aa0ae782d2aabb Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Tue, 27 Apr 2004 15:30:56 +0000 Subject: [PATCH] More typo corrections (not mine). git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276418 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/Execute.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Execute.java b/src/main/org/apache/tools/ant/taskdefs/Execute.java index 9b4f1bdae..d37ba861f 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Execute.java +++ b/src/main/org/apache/tools/ant/taskdefs/Execute.java @@ -445,7 +445,7 @@ public class Execute { */ public int execute() throws IOException { if (workingDirectory != null && !workingDirectory.exists()) { - throw new BuildException(workingDirectory + " doesn't exists."); + throw new BuildException(workingDirectory + " doesn't exist."); } final Process process = launch(project, getCommandline(), getEnvironment(), workingDirectory, @@ -497,7 +497,7 @@ public class Execute { */ public void spawn() throws IOException { if (workingDirectory != null && !workingDirectory.exists()) { - throw new BuildException(workingDirectory + " doesn't exists."); + throw new BuildException(workingDirectory + " doesn't exist."); } final Process process = launch(project, getCommandline(), getEnvironment(), workingDirectory,