From 466a2a978f3a235b4730513386ce1892a55b7456 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 15 Feb 2002 13:48:49 +0000 Subject: [PATCH] some typos. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271363 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/Javac.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Javac.java b/src/main/org/apache/tools/ant/taskdefs/Javac.java index ee452995c..d332bdeb9 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Javac.java +++ b/src/main/org/apache/tools/ant/taskdefs/Javac.java @@ -102,6 +102,8 @@ import java.util.Vector; * @author Robin Green greenrd@hotmail.com * @author Stefan Bodewig * @author J D Glanville + * + * @version $Revision$ */ public class Javac extends MatchingTask { @@ -715,7 +717,7 @@ public class Javac extends MatchingTask { } /** - * Chose the implementation for this particular task. + * Choose the implementation for this particular task. * * @since 1.84, Ant 1.5 */ @@ -727,7 +729,7 @@ public class Javac extends MatchingTask { * The implementation for this particular task. * *

Defaults to the build.compiler property but can be overriden - * via the compiler and for attributes.

+ * via the compiler and fork attributes.

* * @since 1.84, Ant 1.5 */ @@ -739,12 +741,13 @@ public class Javac extends MatchingTask { if (!"false".equals(fork)) { if (compilerImpl != null) { if (isJdkCompiler(compilerImpl)) { - log("Since fork is true, ignoring build.compiler setting.", + log("Since fork is true, ignoring compiler setting.", Project.MSG_WARN); compilerImpl = "extJavac"; } else { - log("Since build.compiler setting isn't classic or modern, ignoring fork setting.", Project.MSG_WARN); + log("Since compiler setting isn't classic or modern," + + "ignoring fork setting.", Project.MSG_WARN); } } else {