Skip to content

Commit 448f6e1

Browse files
Hiroshi LockheimerAndroid (Google) Code Review
authored andcommitted
Merge "temporarily disable blacklisting" into jb-mr1-dev
2 parents 42af2ac + b319d5d commit 448f6e1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

services/java/com/android/server/location/LocationBlacklist.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ private void reloadBlacklist() {
7878
* (package name matches blacklist, and does not match whitelist)
7979
*/
8080
public boolean isBlacklisted(String packageName) {
81+
/*
8182
synchronized (mLock) {
8283
for (String black : mBlacklist) {
8384
if (packageName.startsWith(black)) {
@@ -91,6 +92,7 @@ public boolean isBlacklisted(String packageName) {
9192
}
9293
}
9394
}
95+
*/
9496
return false;
9597
}
9698

0 commit comments

Comments
 (0)