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

Commit b319d5de authored by Victoria Lease's avatar Victoria Lease
Browse files

temporarily disable blacklisting

Bug: 7248239
Change-Id: I2ef28fa0d6890a127fc424e58a148fe1fb15b683
parent 580ee8b0
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -78,6 +78,7 @@ public final class LocationBlacklist extends ContentObserver {
     * (package name matches blacklist, and does not match whitelist)
     * (package name matches blacklist, and does not match whitelist)
     */
     */
    public boolean isBlacklisted(String packageName) {
    public boolean isBlacklisted(String packageName) {
        /*
        synchronized (mLock) {
        synchronized (mLock) {
            for (String black : mBlacklist) {
            for (String black : mBlacklist) {
                if (packageName.startsWith(black)) {
                if (packageName.startsWith(black)) {
@@ -91,6 +92,7 @@ public final class LocationBlacklist extends ContentObserver {
                }
                }
            }
            }
        }
        }
        */
        return false;
        return false;
    }
    }