Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / deprecated / java / app / masterworker / Worker.java
index 0a7d194..55aaaeb 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
@@ -28,7 +28,7 @@ public class Worker extends Process {
     int num = Integer.parseInt(args[0]);
     Msg.debug("Receiving on 'worker_"+num+"'");
 
-    while(true) {  
+    while(true) {
       Task task = Task.receive("worker_"+num);
 
       if ("finalize".equals(task.getName())) {