X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..fa31324a1dabd6a27d423f8e76a357b9d60422fc:/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(); } }