returning if a thread is not alive should happen before any changes to

the list of workers, hence the return statement should be in the
synchronized block.
This commit is contained in:
Andrew Ardill 2011-02-21 12:30:45 +11:00
parent 6269c1e633
commit 30d1a5d3fd

View File

@ -61,8 +61,8 @@ public class CraftThreadManager {
return craftWorker.isAlive();
}
}
// didn't find it, so it must have been removed
return false;
}
// didn't find it, so it must have been removed
return false;
}
}