Update of /cvsroot/ant-contrib/ant-contrib/src/net/sf/antcontrib/process
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14530/src/net/sf/antcontrib/process
Modified Files:
Limit.java
Log Message:
Make Javadoc 1.4 happy, fix some stray CRs in Limit.java.
Patch by Jack Woehr.
Index: Limit.java
===================================================================
RCS file: /cvsroot/ant-contrib/ant-contrib/src/net/sf/antcontrib/process/Limit.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Limit.java 17 Mar 2004 18:06:02 -0000 1.4
--- Limit.java 13 Apr 2004 06:19:24 -0000 1.5
***************
*** 135,140 ****
/**
! * Set a millisecond wait value.
! * @param value the number of milliseconds to wait.
*/
public void setMilliseconds( int value ) {
--- 135,140 ----
/**
! * Set a millisecond wait value.
! * @param value the number of milliseconds to wait.
*/
public void setMilliseconds( int value ) {
***************
*** 197,202 ****
/**
! * Should the build fail if the time limit has expired on this task? Default
! * is no.
*
* @param fail if true, fail the build if the time limit has been reached.
--- 197,203 ----
/**
! * Determines whether the build should fail if the time limit has
! * expired on this task.
! * Default is no.
*
* @param fail if true, fail the build if the time limit has been reached.
***************
*** 318,322 ****
* The enumeration of units:
* millisecond, second, minute, hour, day, week
! * @todo we use timestamps in many places, why not factor this out
*/
public static class TimeUnit extends EnumeratedAttribute {
--- 319,323 ----
* The enumeration of units:
* millisecond, second, minute, hour, day, week
! * @Todo we use timestamps in many places, why not factor this out
*/
public static class TimeUnit extends EnumeratedAttribute {
|