Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2023.
[simgrid.git] / examples / deprecated / java / async / waitall / Sender.java
index e3c82d5..6dc86f1 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2006-2021. The SimGrid Team.
+/* Copyright (c) 2006-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -29,7 +29,7 @@ public class Sender extends Process {
 
     Comm[] communicators = new Comm[receiverCount];
     for (int i = 1; i <= receiverCount; i++) {
-      Task task = new Task("Task_" + i, taskComputeSize, taskCommunicateSize); 
+      Task task = new Task("Task_" + i, taskComputeSize, taskCommunicateSize);
       Msg.info("Start the Sending '" + task.getName()+ "' to '" + hosts[i].getName() + "'");
       communicators[i-1] = task.isend(hosts[i].getName());
     }