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

Commit 2eeba207 authored by Romain Hunault's avatar Romain Hunault 💻
Browse files

Merge branch 'privacycentral' into 'v1-q'

Location: always return false when querying mock provider

See merge request e/os/android_frameworks_base!112
parents e5c67e92 968eabf9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1231,7 +1231,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;
    }

    /**