X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..6e235f741cb5b7031059af2f4da28dcf7436d2c0:/examples/java/app/pingpong/Sender.java diff --git a/examples/java/app/pingpong/Sender.java b/examples/java/app/pingpong/Sender.java index 5f00d6f398..d3520690ac 100644 --- a/examples/java/app/pingpong/Sender.java +++ b/examples/java/app/pingpong/Sender.java @@ -5,17 +5,16 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ package app.pingpong; -import org.simgrid.msg.Msg; import org.simgrid.msg.Host; -import org.simgrid.msg.Process; -import org.simgrid.msg.MsgException; -import org.simgrid.msg.NativeException; import org.simgrid.msg.HostNotFoundException; +import org.simgrid.msg.Msg; +import org.simgrid.msg.MsgException; +import org.simgrid.msg.Process; public class Sender extends Process { private static final double COMM_SIZE_LAT = 1; - public Sender(String hostname, String name, String[] args) throws HostNotFoundException, NativeException { + public Sender(String hostname, String name, String[] args) throws HostNotFoundException { super(hostname,name,args); }