From b98c18e61632d84ff50bf98df74950681b223968 Mon Sep 17 00:00:00 2001 From: fros4943 Date: Mon, 2 Mar 2009 09:46:19 +0000 Subject: [PATCH] changed default simulation delay to 0 --- tools/cooja/java/se/sics/cooja/Simulation.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/cooja/java/se/sics/cooja/Simulation.java b/tools/cooja/java/se/sics/cooja/Simulation.java index f3607bc0f..eef993e6e 100644 --- a/tools/cooja/java/se/sics/cooja/Simulation.java +++ b/tools/cooja/java/se/sics/cooja/Simulation.java @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: Simulation.java,v 1.42 2009/02/24 15:08:20 fros4943 Exp $ + * $Id: Simulation.java,v 1.43 2009/03/02 09:46:19 fros4943 Exp $ */ package se.sics.cooja; @@ -44,7 +44,7 @@ import se.sics.cooja.dialogs.*; * changed simulation state, added or deleted motes etc are observed. * To track mote changes, observe the mote (interfaces) itself. * - * @author Fredrik Österlind + * @author Fredrik Osterlind */ public class Simulation extends Observable implements Runnable { @@ -52,7 +52,7 @@ public class Simulation extends Observable implements Runnable { private Vector moteTypes = new Vector(); - private int delayTime = 5; + private int delayTime = 0; private long currentSimulationTime = 0;