Merge "Fix the inverted logic to judge whether an app is system app."
This commit is contained in:
committed by
Android (Google) Code Review
commit
95497baf4e
@@ -1826,8 +1826,7 @@ public final class DataProcessor {
|
||||
if (appEntry == null || appEntry.info == null) {
|
||||
return false;
|
||||
}
|
||||
return !ApplicationsState.FILTER_DOWNLOADED_AND_LAUNCHER_AND_INSTANT.filterApp(
|
||||
appEntry);
|
||||
return ApplicationsState.FILTER_DOWNLOADED_AND_LAUNCHER_AND_INSTANT.filterApp(appEntry);
|
||||
}
|
||||
|
||||
private static boolean shouldShowBatteryAttributionList(final Context context) {
|
||||
|
||||
Reference in New Issue
Block a user