Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
As the ApplicationHandler class this file doesn't use the the template class Vector...
authorcherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 24 Sep 2007 12:23:29 +0000 (12:23 +0000)
committercherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 24 Sep 2007 12:23:29 +0000 (12:23 +0000)
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

index d390fd3..f9113e0 100644 (file)
@@ -89,7 +89,7 @@ public abstract class Process extends Thread
     /*
      * The arguments of the method function of the process.    
      */
-    public Vector<String> 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<String>();
+       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<String>();
+       this.args = new Vector();
        
        if(null != args)
                this.args.addAll(Arrays.asList(args));