Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
and now a dht package + cmake factoring
[simgrid.git] / examples / java / dht / chord / FindSuccessorTask.java
similarity index 96%
rename from examples/java/chord/FindSuccessorTask.java
rename to examples/java/dht/chord/FindSuccessorTask.java
index b8f84c2..0c78f8b 100644 (file)
@@ -4,11 +4,11 @@
 /* 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;
+package dht.chord;
 
 public class FindSuccessorTask extends ChordTask {
   public int requestId;
-  
+
   public FindSuccessorTask(String issuerHostname, String answerTo,  int requestId) {
     super(issuerHostname, answerTo);
     this.requestId = requestId;