X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc1751d13a6d2673b003820533ff1de78b540f43..ce2a02a088fe07b61de72c882d6e6a1f620d573b:/examples/java/kademlia/FindNodeTask.java diff --git a/examples/java/kademlia/FindNodeTask.java b/examples/java/kademlia/FindNodeTask.java deleted file mode 100644 index f2020aa038..0000000000 --- a/examples/java/kademlia/FindNodeTask.java +++ /dev/null @@ -1,25 +0,0 @@ -/* Copyright (c) 2012-2014, 2016. 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 kademlia; - -/** - * @brief Find node tasks sent by a node to another "Find Node" task sent by a node to another. Ask him for its closest - * nodes from a destination. - */ -public class FindNodeTask extends KademliaTask { - /* Id of the node we are trying to find: the destination */ - private int destination; - - public FindNodeTask(int senderId, int destination) { - super(senderId); - this.destination = destination; - } - - public int getDestination() { - return destination; - } -}