Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
java example simplification and cosmetics
[simgrid.git] / examples / java / app / pingpong / Sender.java
index d6ec213..e207e25 100644 (file)
@@ -18,22 +18,18 @@ public class Sender extends Process {
        }
 
        public void main(String[] args) throws MsgException {
-               Msg.info("hello!");
-
-               Msg.info("host count: " + args.length);
+               Msg.info("Host count: " + args.length);
 
                for(int pos = 0; pos < args.length ; pos++) {
                        String hostname = Host.getByName(args[pos]).getName(); // Make sure that this host exists
                        
                        double time = Msg.getClock(); 
-
                        Msg.info("sender time: " + time);
 
                        PingPongTask task = new PingPongTask("no name", /* Duration: 0 flops */ 0, COMM_SIZE_LAT, time);
-
                        task.send(hostname);
                }
 
-               Msg.info("goodbye!");
+               Msg.info("Done.");
        }
 }
\ No newline at end of file