Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c7c856fb authored by Mike Lockwood's avatar Mike Lockwood Committed by Android Git Automerger
Browse files

am d2084bb6: am e1d7dca6: Merge "LocationManagerService: Call...

am d2084bb6: am e1d7dca6: Merge "LocationManagerService: Call updateNetworkState on providers that are disabled." into froyo

Merge commit 'd2084bb6' into kraken

* commit 'd2084bb6':
  LocationManagerService: Call updateNetworkState on providers that are disabled.
parents 11777d6f d2084bb6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1645,7 +1645,7 @@ public class LocationManagerService extends ILocationManager.Stub implements Run
                synchronized (mLock) {
                    for (int i = mProviders.size() - 1; i >= 0; i--) {
                        LocationProviderInterface provider = mProviders.get(i);
                        if (provider.isEnabled() && provider.requiresNetwork()) {
                        if (provider.requiresNetwork()) {
                            provider.updateNetworkState(mNetworkState, info);
                        }
                    }