Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove Java bindings. They are not updated since maybe 10 years
[simgrid.git] / examples / deprecated / java / dht / kademlia / FindNodeTask.java
diff --git a/examples/deprecated/java/dht/kademlia/FindNodeTask.java b/examples/deprecated/java/dht/kademlia/FindNodeTask.java
deleted file mode 100644 (file)
index b2ceb35..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Copyright (c) 2012-2023. 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 dht.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;
-  }
-}