Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Java examples to examples/java/.
[simgrid.git] / simgrid-java / examples / chord / FindSuccessorTask.java
diff --git a/simgrid-java/examples/chord/FindSuccessorTask.java b/simgrid-java/examples/chord/FindSuccessorTask.java
deleted file mode 100644 (file)
index 8708469..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * Copyright 2006-2012. 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 chord;
-
-public class FindSuccessorTask extends ChordTask {
-       public int requestId;
-       
-       public FindSuccessorTask(String issuerHostname, String answerTo,  int requestId) {
-               super(issuerHostname, answerTo);
-               this.requestId = requestId;
-       }
-}