Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This time, hopefully, the files are in valid version 2 of the DTD
[simgrid.git] / examples / java / basic / Master.java
index 4fa8f44..e25fb35 100644 (file)
@@ -31,8 +31,6 @@ public class Master extends simgrid.msg.Process {
       double taskCommunicateSize = Double.valueOf(args[2]).doubleValue();
       BasicTask[] todo = new BasicTask[numberOfTasks];
       
-      String taskName = null;
-      
       for (int i = 0; i < numberOfTasks; i++) {
         todo[i] = new BasicTask("Task_" + i, taskComputeSize, taskCommunicateSize); 
       }