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

Commit 3e6ecfeb authored by Michal Karpinski's avatar Michal Karpinski Committed by android-build-merger
Browse files

Merge "Removed unused variables in PerformBackupTask#finalizeBackup()" into oc-dev am: ce7f9317

am: 5c71bdf1

Change-Id: I6596a7438a967416753d96aa6807d87d78fb4a7b
parents 84d19b31 5c71bdf1
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -3106,13 +3106,6 @@ public class BackupManagerService implements BackupManagerServiceInterface {
            if (!mCancelAll && mStatus == BackupTransport.TRANSPORT_OK &&
                    mPendingFullBackups != null && !mPendingFullBackups.isEmpty()) {
                Slog.d(TAG, "Starting full backups for: " + mPendingFullBackups);
                CountDownLatch latch = new CountDownLatch(1);
                String[] fullBackups =
                        mPendingFullBackups.toArray(new String[mPendingFullBackups.size()]);
                PerformFullTransportBackupTask task =
                        new PerformFullTransportBackupTask(/*fullBackupRestoreObserver*/ null,
                                fullBackups, /*updateSchedule*/ false, /*runningJob*/ null, latch,
                                mObserver, mMonitor, mUserInitiated);
                // Acquiring wakelock for PerformFullTransportBackupTask before its start.
                mWakelock.acquire();
                (new Thread(mFullBackupTask, "full-transport-requested")).start();