Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Let our examples compile with java 1.6, or almost
[simgrid.git] / examples / java / app / bittorrent / Tracker.java
index 980d9c6..b8126a8 100644 (file)
@@ -36,7 +36,7 @@ public class Tracker extends Process {
     //Retrieve the end time
     deadline = Double.parseDouble(args[0]);
     //Building peers array
-    peersList = new ArrayList<>();
+    peersList = new ArrayList<Integer>();
 
     Msg.info("Tracker launched.");
     while (Msg.getClock() < deadline) {