Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / deprecated / java / energy / pstate / PstateRunner.java
index 87c0ab0..141a3c5 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2016-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2016-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. */
@@ -18,7 +18,7 @@ public class PstateRunner extends Process {
 
        public class DVFS extends Process {
                public  DVFS (Host host, String name) {
-                       super(host, name); 
+                       super(host, name);
                }
 
                @Override
@@ -77,8 +77,8 @@ public class PstateRunner extends Process {
        @Override
        public void main(String[] strings) throws HostNotFoundException, HostFailureException {
 
-           new DVFS (Host.getByName("MyHost1"), "dvfs_test").start(); 
-           new DVFS (Host.getByName("MyHost2"), "dvfs_test").start(); 
+           new DVFS (Host.getByName("MyHost1"), "dvfs_test").start();
+           new DVFS (Host.getByName("MyHost2"), "dvfs_test").start();
 
        }
 }