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

Commit 5c71bdf1 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

Change-Id: I40667aac08e8c6c5d2e31640a4667ea577cc8889
parents c6ef0585 ce7f9317
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -3109,13 +3109,6 @@ public class BackupManagerService {
            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();