X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7bdff3a31c5d1e6e044b9f23faccf489661a588f..b8df87e176f27b25534f27d7e240defa32ca35bc:/examples/java/app/tokenring/Main.java diff --git a/examples/java/app/tokenring/Main.java b/examples/java/app/tokenring/Main.java index d1423aadc5..4ccfafdc81 100644 --- a/examples/java/app/tokenring/Main.java +++ b/examples/java/app/tokenring/Main.java @@ -1,13 +1,11 @@ -/* Copyright (c) 2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2019. 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. */ package app.tokenring; import org.simgrid.msg.Host; -import org.simgrid.msg.HostNotFoundException; import org.simgrid.msg.Msg; -import org.simgrid.msg.NativeException; import org.simgrid.msg.Process; class Main { @@ -16,7 +14,7 @@ class Main { throw new IllegalAccessError("Utility class"); } - public static void main(String[] args) throws HostNotFoundException, NativeException { + public static void main(String[] args) { Msg.init(args); String platform = "../platforms/small_platform.xml"; @@ -26,12 +24,10 @@ class Main { Host[] hosts = Host.all(); for (int rank = 0; rank < hosts.length; rank++) { - Process proc = new RelayRunner(hosts[rank], ""+rank, null); + Process proc = new RelayRunner(hosts[rank], Integer.toString(rank), null); proc.start(); } Msg.info("Number of hosts '"+hosts.length+"'"); Msg.run(); - - Msg.info("Simulation time "+Msg.getClock()); } }