Remove settings migration

This commit is contained in:
TobiGr 2024-03-22 21:29:19 +01:00
parent 267fffcc66
commit 0077a1f51d
1 changed files with 1 additions and 13 deletions

View File

@ -13,7 +13,6 @@ import org.schabi.newpipe.error.ErrorInfo;
import org.schabi.newpipe.error.ErrorUtil;
import org.schabi.newpipe.error.UserAction;
import org.schabi.newpipe.util.DeviceUtils;
import org.schabi.newpipe.util.ReleaseVersionUtil;
import java.util.Collections;
import java.util.HashSet;
@ -144,16 +143,6 @@ public final class SettingMigrations {
}
};
public static final Migration MIGRATION_6_7 = new Migration(6, 7) {
@Override
protected void migrate(@NonNull final Context context) {
final boolean isAutoUpdateCheckEnabled = sp.getBoolean("update_app_key", true);
if (isAutoUpdateCheckEnabled && ReleaseVersionUtil.INSTANCE.isReleaseApk()) {
UpdateSettingsFragment.askForConsentToUpdateChecks(context);
}
}
};
/**
* List of all implemented migrations.
* <p>
@ -167,13 +156,12 @@ public final class SettingMigrations {
MIGRATION_3_4,
MIGRATION_4_5,
MIGRATION_5_6,
MIGRATION_6_7,
};
/**
* Version number for preferences. Must be incremented every time a migration is necessary.
*/
private static final int VERSION = 7;
private static final int VERSION = 6;
public static void runMigrationsIfNeeded(@NonNull final Context context) {