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

Commit 937e7863 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Initialize progress and lastProgress AtomicIntegers" into rvc-dev

parents ac4b9bf7 5f49375c
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.