mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-01 08:16:49 +00:00
[Launcher/Archive] remove all checks for the archiving system property
No longer needed Change-Id: I62c8843aa04a245d1dcc30f7787c71d17993f5d1 BUG: 331165939 Test: builds
This commit is contained in:
@@ -421,7 +421,7 @@ public class LoaderTask implements Runnable {
|
||||
|
||||
final HashMap<PackageUserKey, SessionInfo> installingPkgs =
|
||||
mSessionHelper.getActiveSessions();
|
||||
if (Utilities.enableSupportForArchiving()) {
|
||||
if (Flags.enableSupportForArchiving()) {
|
||||
mInstallingPkgsCached = installingPkgs;
|
||||
}
|
||||
installingPkgs.forEach(mApp.getIconCache()::updateSessionCache);
|
||||
@@ -695,7 +695,7 @@ public class LoaderTask implements Runnable {
|
||||
for (int i = 0; i < apps.size(); i++) {
|
||||
LauncherActivityInfo app = apps.get(i);
|
||||
AppInfo appInfo = new AppInfo(app, mUserCache.getUserInfo(user), quietMode);
|
||||
if (Utilities.enableSupportForArchiving() && app.getApplicationInfo().isArchived) {
|
||||
if (Flags.enableSupportForArchiving() && app.getApplicationInfo().isArchived) {
|
||||
// For archived apps, include progress info in case there is a pending
|
||||
// install session post restart of device.
|
||||
String appPackageName = app.getApplicationInfo().packageName;
|
||||
|
||||
Reference in New Issue
Block a user