X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6daf179640c4438bb442671e641d304acefe263e..2092a7784bc5241f42fdb17432b6b5b393b9b33d:/examples/deprecated/java/app/bittorrent/Peer.java diff --git a/examples/deprecated/java/app/bittorrent/Peer.java b/examples/deprecated/java/app/bittorrent/Peer.java index 6491bd6568..ab394a0db9 100644 --- a/examples/deprecated/java/app/bittorrent/Peer.java +++ b/examples/deprecated/java/app/bittorrent/Peer.java @@ -1,5 +1,4 @@ -/* Copyright (c) 2006-2019. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2006-2019. 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. */ @@ -49,11 +48,8 @@ public class Peer extends Process { if (args.length != 3 && args.length != 2) { Msg.info("Wrong number of arguments"); } - if (args.length == 3) { - init(Integer.parseInt(args[0]),true); - } else { - init(Integer.parseInt(args[0]),false); - } + init(Integer.parseInt(args[0]), (args.length == 3)); + //Retrieve the deadline deadline = Double.parseDouble(args[1]); if (deadline < 0) {