Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
and now a dht package + cmake factoring
[simgrid.git] / examples / java / kademlia / PingTask.java
diff --git a/examples/java/kademlia/PingTask.java b/examples/java/kademlia/PingTask.java
deleted file mode 100644 (file)
index 38c02a1..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Copyright (c) 2012-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. */
-
-package kademlia;
-
-/**
- * @brief "PING" task sent by a node to another to see if it is still alive
- */
-public class PingTask extends KademliaTask {
-       /**
-        * Constructor
-        */
-       public PingTask(int senderId) {
-               super(senderId);
-       }
-}