Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / deprecated / java / async / dsend / Sender.java
index 9f3053a..a248b7c 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2006-2020. The SimGrid Team.
+/* Copyright (c) 2006-2022. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -27,7 +27,7 @@ public class Sender extends Process {
     Msg.info("Hello! Got "+ receiverCount + " receivers to contact");
 
     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("Sending \"" + task.getName()+ "\" to \"" + hosts[i].getName() + "\"");
       task.dsend(hosts[i].getName());
     }