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

Commit 44d00c76 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

Change-Id: I050c88f2c75fe7fb68ee5e623cd8479247e6985e
parents ed35c7aa 598344be
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.