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

Commit 2e289442 authored by Romain Hunault's avatar Romain Hunault 🚴🏻
Browse files

Merge branch 'privacycentral-r' into 'v1-r'

Location: always return false when querying mock provider

See merge request e/os/android_frameworks_base!111
parents c0c8a536 3b4fbd35
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1223,7 +1223,7 @@ public class Location implements Parcelable {
     * @return true if this Location came from a mock provider, false otherwise
     */
    public boolean isFromMockProvider() {
        return (mFieldsMask & HAS_MOCK_PROVIDER_MASK) != 0;
        return false;
    }

    /**