Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 70dacb5d authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Update SyncStorageEngine#DELETE_LEGACY_PARCEL_FILES." into rvc-dev am: a95769b7

Change-Id: I567cf7a5f22b6d96d2e1fda86c928dad37ecd57a
parents 32fedd8f a95769b7
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -472,8 +472,7 @@ public class SyncStorageEngine {

    private int mSyncRandomOffset;

    // STOPSHIP: b/143656271 this should be true on launch
    private static final boolean DELETE_LEGACY_PARCEL_FILES = false;
    private static final boolean DELETE_LEGACY_PARCEL_FILES = true;
    private static final String LEGACY_STATUS_FILE_NAME = "status.bin";
    private static final String LEGACY_STATISTICS_FILE_NAME = "stats.bin";

@@ -2076,7 +2075,7 @@ public class SyncStorageEngine {
        }

        // if upgrade to proto was successful, delete parcel file
        if (DELETE_LEGACY_PARCEL_FILES && mStatusFile.exists()) {
        if (DELETE_LEGACY_PARCEL_FILES && parcelStatus.exists() && mStatusFile.exists()) {
            parcelStatus.delete();
        }
    }
@@ -2475,7 +2474,7 @@ public class SyncStorageEngine {
        }

        // if upgrade to proto was successful, delete parcel file
        if (DELETE_LEGACY_PARCEL_FILES && mStatisticsFile.exists()) {
        if (DELETE_LEGACY_PARCEL_FILES && parcelStats.exists() && mStatisticsFile.exists()) {
            parcelStats.delete();
        }
    }