Open GoogleCodeExporter opened 9 years ago
For an ugly workaround, add the following as the first lines of onStart():
// wait until we have a clock signal
while (true) {
try {
connectedNode.getCurrentTime();
break; // no exception, so let's stop waiting
} catch (NullPointerException e) {
try {
Thread.sleep(100);
} catch (InterruptedException e1) {
}
}
}
Original comment by martin.g...@gmail.com
on 28 Oct 2012 at 1:31
Original issue reported on code.google.com by
martin.g...@gmail.com
on 28 Oct 2012 at 1:26