PsudeoThread will throw a null object reference exception when calling
"isRunning" on a thread that has already completed.
Right now it is written as:
public function isRunning():Boolean {
return intTimer.running;
}
Changing it to this should solve the problem:
public function isRunning():Boolean {
return (intTimer != null) ? intTimer.running : false;
}
Original issue reported on code.google.com by llin...@gmail.com on 28 Jun 2011 at 11:32
Original issue reported on code.google.com by
llin...@gmail.com
on 28 Jun 2011 at 11:32