Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanups in java examples (2/2)
[simgrid.git] / examples / java / io / Storage.java
index dc2c9e6..ae2488d 100644 (file)
@@ -4,29 +4,25 @@
 /* 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 io;
-
-import org.simgrid.msg.Host;
 import org.simgrid.msg.Msg;
+import org.simgrid.msg.Host;
 import org.simgrid.msg.MsgException;
 
+public class Storage {
+  public static void main(String[] args) throws MsgException {      
+    Msg.init(args);
+    if(args.length < 1) {
+      Msg.info("Usage   : Storage platform_file ");
+      Msg.info("example : Storage ../platforms/storage/storage.xml ");
+      System.exit(1);
+    }
 
+    Msg.createEnvironment(args[0]);
 
-public class Storage {
-  public static void main(String[] args) throws MsgException {         
-               Msg.init(args);
-               if(args.length < 1) {
-                       Msg.info("Usage   : storage platform_file ");
-               Msg.info("example : storage platform.xml ");
-               System.exit(1);
-           }    
-               Msg.createEnvironment(args[0]);
-               
-               Host[] hosts = Host.all();              
-               new io.Client(hosts[0],0).start();
+    Host[] hosts = Host.all();
+    new io.Client(hosts[0],0).start();
 
-               Msg.run();              
+    Msg.run();
     }
 }