Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanups in Java examples advised by Sonar
[simgrid.git] / examples / java / io / storage / Main.java
index 9b77b8d..306eee8 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (c) 2012-2014. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2012-2017. 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. */
@@ -7,10 +6,13 @@
 package io.storage;
 import org.simgrid.msg.Msg;
 import org.simgrid.msg.Host;
-import org.simgrid.msg.MsgException;
 
 public class Main {
-  public static void main(String[] args) throws MsgException {
+  private Main() {
+    throw new IllegalAccessError("Utility class");
+  }
+
+  public static void main(String[] args) {
     Msg.init(args);
     if(args.length < 1) {
       Msg.info("Usage   : Storage platform_file ");
@@ -21,7 +23,7 @@ public class Main {
     Msg.createEnvironment(args[0]);
 
     Host[] hosts = Host.all();
-    new io.storage.Client(hosts[0],0).start();
+    new io.storage.Client(hosts[3],0).start();
 
     Msg.run();
     }