X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/72b87a2780383260b02c46d94d609579d606bb15..9e0cc75839bb97e7c5a4c25ed97dc53c8acdb011:/examples/startKillTime/Slave.java diff --git a/examples/startKillTime/Slave.java b/examples/startKillTime/Slave.java index 2120e905d3..d3f7036c03 100644 --- a/examples/startKillTime/Slave.java +++ b/examples/startKillTime/Slave.java @@ -1,5 +1,5 @@ -/* - * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. +/* + * Copyright 2006-2012. 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. @@ -17,9 +17,9 @@ import org.simgrid.msg.Process; * Lazy Guy Slave, suspends itself ASAP */ public class Slave extends Process { - public Slave(Host host, String name, String[]args, double startTime, double killTime) { - super(host,name,args,startTime,killTime); - } + public Slave(Host host, String name, String[]args) { + super(host,name,args); + } public void main(String[] args) throws TransferFailureException, HostFailureException, TimeoutException { Msg.info("Hello!"); waitFor(10.0);