Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / deprecated / java / async / yield / Main.java
index 837f4e0..4b6822e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2017-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2017-2022. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -6,8 +6,8 @@
 package async.yield;
 
 /** This example demonstrates the use of the Task.dsend() method.
- * 
- *  This way, the sender can be detached from the communication: it is not blocked as with Task.send() 
+ *
+ *  This way, the sender can be detached from the communication: it is not blocked as with Task.send()
  *  and has nothing to do at the end as with Task.isend() where it must do a Comm.wait().
  */
 
@@ -33,7 +33,7 @@ class Main {
     Host[] hosts = Host.all();
     new Yielder(hosts[0],"Yielder", new String[] {"10"}).start();
     new Yielder(hosts[1],"Yielder", new String[] {"15"}).start();
-    
+
     /*  execute the simulation. */
     Msg.run();
   }