From ace547bc97be558680726ceaa2c4bc36cfd9191a Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Sun, 23 Dec 2001 00:22:53 +0000 Subject: [PATCH] Made timeout time a long not an int. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270340 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/myrmidon/framework/exec/ExecuteWatchdog.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/ExecuteWatchdog.java b/proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/ExecuteWatchdog.java index 4425f890e..e5d3a5bdf 100644 --- a/proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/ExecuteWatchdog.java +++ b/proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/ExecuteWatchdog.java @@ -51,7 +51,7 @@ public class ExecuteWatchdog * timeout duration. Once the process running time exceeds this it should be * killed */ - private int m_timeout; + private long m_timeout; /** * Creates a new watchdog with a given timeout. @@ -59,7 +59,7 @@ public class ExecuteWatchdog * @param timeout the timeout for the process in milliseconds. It must be * greather than 0. */ - public ExecuteWatchdog( int timeout ) + public ExecuteWatchdog( final long timeout ) { if( timeout < 1 ) {