Merge pull request #1307 from cmorty/pull/uninitmotes

Cooja: Make sure motes are always removed from the list of unintialized motes
This commit is contained in:
Fredrik Österlind 2016-06-06 10:55:29 +02:00
commit 5f7e77b3f9

View File

@ -847,6 +847,9 @@ public class Simulation extends Observable implements Runnable {
}
};
//Add to list of uninitialized motes
motesUninit.add(mote);
if (!isRunning()) {
/* Simulation is stopped, add mote immediately */
addMote.run();
@ -854,8 +857,6 @@ public class Simulation extends Observable implements Runnable {
/* Add mote from simulation thread */
invokeSimulationThread(addMote);
}
//Add to list of uninitialized motes
motesUninit.add(mote);
}