From 2092a7784bc5241f42fdb17432b6b5b393b9b33d Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 2 Feb 2019 22:44:10 +0100 Subject: [PATCH] sonar: Replace this if-then-else statement by a single statement --- examples/deprecated/java/app/bittorrent/Peer.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) 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) { -- 2.20.1