>>5627001I believe the wihile loop is wrong, as the line
while(true) {
actually reads as "while true is true" this would cause an infinite loop
should be:
while(looper <tasks.size()) {
currentTask = ...
...
looper++;
}
looper = 0;
the else statement isn't necessary, just put the looper = 0; line outsied of the loop like above