Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I found the getLastBestLocation() in GingerbreadLastLocationFinder and LegacyLastLocationFinder has different implemention #7

Open
GoogleCodeExporter opened this issue Apr 8, 2015 · 1 comment

Comments

@GoogleCodeExporter
Copy link

I found the implemention in these two files is different, but I can't 
understand why. 
I think the LegacyLastLocationFinder's implemention is not correct, But the 
GingerbreadLastLocationFinder's implemention is correct.
Thanks for your sharing of this project, It helps me a lot


Original issue reported on code.google.com by lishali1...@gmail.com on 6 Sep 2011 at 8:40

@GoogleCodeExporter
Copy link
Author

Well if you see the following line in getLastBestLocation(), it differs between 
the two:

    if (locationListener != null && (bestTime > minTime || bestAccuracy > minDistance))

The correct line in LegacyLastLocationFinder should be:

    if (locationListener != null && (bestTime < minTime || bestAccuracy > minDistance)) 

Pretty grave error

Original comment by nil...@gmail.com on 18 Jun 2014 at 8:07

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant