peterreilly 2004/12/01 09:53:05
Modified: src/main/org/apache/tools/ant/taskdefs Tag: ANT_16_BRANCH
Sleep.java Exit.java Input.java
Log:
sync
Revision Changes Path
No revision
No revision
1.15.2.5 +1 -0 ant/src/main/org/apache/tools/ant/taskdefs/Sleep.java
Index: Sleep.java
===================================================================
RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Sleep.java,v
retrieving revision 1.15.2.4
retrieving revision 1.15.2.5
diff -u -r1.15.2.4 -r1.15.2.5
--- Sleep.java 9 Mar 2004 17:01:34 -0000 1.15.2.4
+++ Sleep.java 1 Dec 2004 17:53:05 -0000 1.15.2.5
@@ -121,6 +121,7 @@
try {
Thread.sleep(millis);
} catch (InterruptedException ie) {
+ // Ignore Exception
}
}
1.25.2.6 +1 -1 ant/src/main/org/apache/tools/ant/taskdefs/Exit.java
Index: Exit.java
===================================================================
RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Exit.java,v
retrieving revision 1.25.2.5
retrieving revision 1.25.2.6
diff -u -r1.25.2.5 -r1.25.2.6
--- Exit.java 21 Jun 2004 22:15:05 -0000 1.25.2.5
+++ Exit.java 1 Dec 2004 17:53:05 -0000 1.25.2.6
@@ -105,7 +105,7 @@
* The error message is constructed from the text fields, from
* the nested condition (if specified), or finally from
* the if and unless parameters (if present).
- * @throws BuildException
+ * @throws BuildException on error
*/
public void execute() throws BuildException {
boolean fail = (nestedConditionPresent()) ? testNestedCondition()
1.23.2.6 +1 -1 ant/src/main/org/apache/tools/ant/taskdefs/Input.java
Index: Input.java
===================================================================
RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Input.java,v
retrieving revision 1.23.2.5
retrieving revision 1.23.2.6
diff -u -r1.23.2.5 -r1.23.2.6
--- Input.java 9 Mar 2004 17:01:33 -0000 1.23.2.5
+++ Input.java 1 Dec 2004 17:53:05 -0000 1.23.2.6
@@ -96,7 +96,7 @@
/**
* Actual method executed by ant.
- * @throws BuildException
+ * @throws BuildException on error
*/
public void execute () throws BuildException {
if (addproperty != null
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]