X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/52e6b3073b6d8b88d05b8b2e520c567eb789b09d..6068c9f0036786cdcbeb273d495e5aa378cb5f92:/examples/commTime/Master.java diff --git a/examples/commTime/Master.java b/examples/commTime/Master.java index cd68e14606..ea469638ee 100644 --- a/examples/commTime/Master.java +++ b/examples/commTime/Master.java @@ -17,9 +17,9 @@ import org.simgrid.msg.Task; import org.simgrid.msg.Process; public class Master extends Process { - public Master(Host host, String name, String[]args, double startTime, double killTime) { - super(host,name,args, startTime, killTime); - } + public Master(Host host, String name, String[]args) { + super(host,name,args); + } public void main(String[] args) throws MsgException { if (args.length < 4) { Msg.info("Master needs 4 arguments");