[Settings/Archive] remove all checks for the archiving system property

No longer needed

Change-Id: I24bc9a3d7503da1606d29eb3dfa963b0e6bf9d3e
BUG: 331165939
Test: builds
This commit is contained in:
Song Chun Fan
2024-04-08 18:16:11 +00:00
parent 19a5080842
commit 6ae958abd2
4 changed files with 4 additions and 8 deletions

View File

@@ -72,8 +72,7 @@ public abstract class AppCounter extends AsyncTask<Void, Void, Integer> {
}
private boolean isArchivingEnabled() {
return mFf.archiving() || SystemProperties.getBoolean("pm.archiving.enabled", false)
|| Flags.appArchiving();
return mFf.archiving() || Flags.appArchiving();
}
@Override