X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3b7e5f4b4d7c87ee3e8827313ec966ea8fc8387..ea74f5d95928a521a588737e81f1de94eef25d19:/examples/deprecated/java/energy/pstate/PstateRunner.java diff --git a/examples/deprecated/java/energy/pstate/PstateRunner.java b/examples/deprecated/java/energy/pstate/PstateRunner.java index 87c0ab0beb..141a3c5e83 100644 --- a/examples/deprecated/java/energy/pstate/PstateRunner.java +++ b/examples/deprecated/java/energy/pstate/PstateRunner.java @@ -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(); } }