Skip to content

Commit

Permalink
bug/#1193 - slight fix
Browse files Browse the repository at this point in the history
Impacted class:
* `MapTileProviderBasic`: replaced an `.equals(Object)` with a `==`
  • Loading branch information
monsieurtanuki committed Dec 17, 2018
1 parent 2b619ed commit 871b7b2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -200,7 +200,7 @@ public boolean setOfflineFirst(final boolean pOfflineFirst) {
if (downloaderIndex == -1 && provider == mDownloaderProvider) {
downloaderIndex = i;
}
if (approximationIndex == -1 && mApproximationProvider.equals(provider)) {
if (approximationIndex == -1 && provider == mApproximationProvider) {
approximationIndex = i;
}
i++;
Expand Down

0 comments on commit 871b7b2

Please sign in to comment.