From ae8169afc916c94be22970461a9dcccd5777ae86 Mon Sep 17 00:00:00 2001 From: cherierm Date: Mon, 24 Sep 2007 12:23:29 +0000 Subject: [PATCH] As the ApplicationHandler class this file doesn't use the the template class Vector of java 1.5 (not supported by the previous version of java) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4697 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/java/simgrid/msg/Process.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/simgrid/msg/Process.java b/src/java/simgrid/msg/Process.java index d390fd3d22..f9113e0edd 100644 --- a/src/java/simgrid/msg/Process.java +++ b/src/java/simgrid/msg/Process.java @@ -89,7 +89,7 @@ public abstract class Process extends Thread /* * The arguments of the method function of the process. */ - public Vector args; + public Vector args; /* process synchronisation tools */ protected Sem schedBegin, schedEnd; @@ -102,7 +102,7 @@ public abstract class Process extends Thread this.id = 0; this.name = null; this.bind = 0; - this.args = new Vector(); + this.args = new Vector(); schedBegin = new Sem(0); schedEnd = new Sem(0); } @@ -177,7 +177,7 @@ public abstract class Process extends Thread throw new NullPointerException("Process name cannot be NULL"); - this.args = new Vector(); + this.args = new Vector(); if(null != args) this.args.addAll(Arrays.asList(args)); -- 2.20.1