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

Commit 6fdfe675 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Initialize progress and lastProgress AtomicIntegers" into rvc-dev am:...

Merge "Initialize progress and lastProgress AtomicIntegers" into rvc-dev am: 937e7863 am: 598344be am: d43c43e2

Change-Id: Iad478a581f9ce522eb1e63b5a717afb9c815c191
parents 8c5c3d3a d43c43e2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1808,13 +1808,13 @@ public class BugreportProgressService extends Service {
         * Current value of progress (in percentage) of the bugreport generation as
         * displayed by the UI.
         */
        AtomicInteger progress;
        AtomicInteger progress = new AtomicInteger(0);

        /**
         * Last value of progress (in percentage) of the bugreport generation for which
         * system notification was updated.
         */
        AtomicInteger lastProgress;
        AtomicInteger lastProgress = new AtomicInteger(0);

        /**
         * Time of the last progress update.