From: Martin Quinson Date: Sat, 2 Feb 2019 21:44:10 +0000 (+0100) Subject: sonar: Replace this if-then-else statement by a single statement X-Git-Tag: v3_22~412 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2092a7784bc5241f42fdb17432b6b5b393b9b33d?ds=sidebyside sonar: Replace this if-then-else statement by a single statement --- 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) {