We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 42af2ac + b319d5d commit 448f6e1Copy full SHA for 448f6e1
services/java/com/android/server/location/LocationBlacklist.java
@@ -78,6 +78,7 @@ private void reloadBlacklist() {
78
* (package name matches blacklist, and does not match whitelist)
79
*/
80
public boolean isBlacklisted(String packageName) {
81
+ /*
82
synchronized (mLock) {
83
for (String black : mBlacklist) {
84
if (packageName.startsWith(black)) {
@@ -91,6 +92,7 @@ public boolean isBlacklisted(String packageName) {
91
92
}
93
94
95
+ */
96
return false;
97
98
0 commit comments