Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
and now a dht package + cmake factoring
[simgrid.git] / examples / java / chord / GetPredecessorAnswerTask.java
diff --git a/examples/java/chord/GetPredecessorAnswerTask.java b/examples/java/chord/GetPredecessorAnswerTask.java
deleted file mode 100644 (file)
index c3d1724..0000000
+++ /dev/null
@@ -1,15 +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 GetPredecessorAnswerTask extends ChordTask {
-       public int answerId;
-       public GetPredecessorAnswerTask(String issuerHostname, String answerTo, int answerId) {
-               super(issuerHostname,answerTo);
-               this.answerId = answerId;
-       }
-}