X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b73466ada27682d1729f394549479da83ef4a99..f2df13795e01302813a6aef10825ec7e922ce530:/examples/java/bittorrent/Peer.java diff --git a/examples/java/bittorrent/Peer.java b/examples/java/bittorrent/Peer.java index f1f10c15d6..6ce5a5473d 100644 --- a/examples/java/bittorrent/Peer.java +++ b/examples/java/bittorrent/Peer.java @@ -1,10 +1,9 @@ -/* - * Copyright (c) 2006-2013. 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. - */ +/* Copyright (c) 2006-2014. 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. */ + package bittorrent; import java.util.ArrayList; @@ -420,10 +419,9 @@ public class Peer extends Process { return; } if (true || pieces < 3) { - int i = 0, peerPiece; + int peerPiece; do { currentPiece = stream.randInt(0,Common.FILE_PIECES - 1); - i++; } while (!(bitfield[currentPiece] == '0' && !currentPieces.contains(currentPiece))); } else {