Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Java examples to examples/java/.
[simgrid.git] / simgrid-java / examples / chord / NotifyTask.java
diff --git a/simgrid-java/examples/chord/NotifyTask.java b/simgrid-java/examples/chord/NotifyTask.java
deleted file mode 100644 (file)
index 670da59..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 NotifyTask extends ChordTask {
-       public int requestId;
-       public NotifyTask(String issuerHostname, String answerTo, int requestId) {
-               super(issuerHostname, answerTo);
-               this.requestId = requestId;
-       }
-}