Skip to content

Commit

Permalink
dont launch javafx in start for now
Browse files Browse the repository at this point in the history
  • Loading branch information
madmax2012 committed Nov 18, 2018
1 parent 50f262d commit 4f78ba1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/team_pjt/Start.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,15 @@ public static void main(String[] args) {
while (client_iterator.hasNext()) {
JSONObject order = (JSONObject) client_iterator.next();
String id = order.getString("guid");
System.out.println(id);
agents.add(id + sCPrefix);
}
}
List<String> cmd = buildCMD(agents, jaBakeries, jaClients, jaDelivery, joMeta, joStreet_network);
// System.out.println(cmd.toString());
// System.out.println(cmd.size());
jade.Boot.main(cmd.toArray(new String[cmd.size()]));
Visualisation.showWindow();
//Visualisation.showWindow();

}

Expand Down

0 comments on commit 4f78ba1

Please sign in to comment.