X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/adc715244ef6399b393a0f30e2598c9a3ed74725..ecd5f7562caf1d443bf22788fa5f4fac408776ec:/examples/java/dht/kademlia/RoutingTable.java diff --git a/examples/java/dht/kademlia/RoutingTable.java b/examples/java/dht/kademlia/RoutingTable.java index c5f88b2438..ed1552e706 100644 --- a/examples/java/dht/kademlia/RoutingTable.java +++ b/examples/java/dht/kademlia/RoutingTable.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2012-2014, 2016. The SimGrid Team. +/* Copyright (c) 2012-2014, 2016-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -67,7 +67,8 @@ public class RoutingTable { Msg.debug("Adding " + id + " to my routing table"); bucket.add(id); if (bucket.size() > Common.BUCKET_SIZE) { - //TODO: Ping the least seen guy and remove him if he is offline. + // TODO + Msg.debug("Should ping the least seen guy and remove him if he is offline."); } } }