bodewig 02/02/15 05:48:49
Modified: src/main/org/apache/tools/ant/taskdefs Javac.java
Log:
some typos.
Revision Changes Path
1.85 +7 -4
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Javac.java
Index: Javac.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Javac.java,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- Javac.java 15 Feb 2002 13:42:53 -0000 1.84
+++ Javac.java 15 Feb 2002 13:48:49 -0000 1.85
@@ -102,6 +102,8 @@
* @author Robin Green <a href="mailto:[EMAIL PROTECTED]">[EMAIL
PROTECTED]</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Stefan Bodewig</a>
* @author <a href="mailto:[EMAIL PROTECTED]">J D Glanville</a>
+ *
+ * @version $Revision: 1.85 $
*/
public class Javac extends MatchingTask {
@@ -715,7 +717,7 @@
}
/**
- * Chose the implementation for this particular task.
+ * Choose the implementation for this particular task.
*
* @since 1.84, Ant 1.5
*/
@@ -727,7 +729,7 @@
* The implementation for this particular task.
*
* <p>Defaults to the build.compiler property but can be overriden
- * via the compiler and for attributes.</p>
+ * via the compiler and fork attributes.</p>
*
* @since 1.84, Ant 1.5
*/
@@ -739,12 +741,13 @@
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 {
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>