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

Commit a028a4b5 authored by Mike Lockwood's avatar Mike Lockwood Committed by Android (Google) Code Review
Browse files

Merge "Fix LocationManager.getProvider() API breakage."

parents a2fd9d17 223e84d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1341,7 +1341,7 @@ public class LocationManagerService extends ILocationManager.Stub implements Run

    private Bundle _getProviderInfoLocked(String provider) {
        LocationProviderInterface p = mProvidersByName.get(provider);
        if (p == null || !p.isEnabled()) {
        if (p == null) {
            return null;
        }