UserOverlayBase.java fixed animation thread break condition to check of isAborted rather than !isAborted

This commit is contained in:
2012-01-13 05:51:24 +00:00
parent fdc21f6afe
commit c3d155500a
38 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ public abstract class UserOverlayBase extends Overlay implements GeoPointLocatio
boolean isCountingUp = true;
while (true) {
synchronized (this) {
if (! isAborted) {
if (isAborted) {
break;
}
@@ -301,7 +301,7 @@ public abstract class UserOverlayBase extends Overlay implements GeoPointLocatio
/**
* Enables the Acquiring GPS dialog if the location has not been acquired
*
* TODO fix funtion
* TODO fix funtion currently generates bad window token
* @author ricky barrette
*/
public void enableGPSDialog(){