Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / deprecated / java / app / centralizedmutex / Coordinator.java
index 956ce2f..cdf0447 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2012-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. */
@@ -20,7 +20,7 @@ public class Coordinator extends Process {
   public void main(String[] args) throws MsgException {
     int csToServe = Integer.parseInt(args[0]);
     LinkedList<RequestTask> waitingQueue=new LinkedList<>();
-     
+
     while (csToServe >0) {
       Task task = Task.receive("coordinator");
       if (task instanceof RequestTask) {