Merge "Fix misplaced return in RescueParty" into qt-dev

This commit is contained in:
Daniel Rosenberg
2019-05-01 19:38:54 +00:00
committed by Android (Google) Code Review

View File

@@ -866,8 +866,8 @@ public class RecoverySystem {
if (storageManager.needsCheckpoint()) {
Log.i(TAG, "Rescue Party requested wipe. Aborting update instead.");
storageManager.abortChanges("rescueparty", false);
return;
}
return;
} catch (RemoteException e) {
Log.i(TAG, "Failed to handle with checkpointing. Continuing with wipe.");
}