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

Commit 13b55002 authored by Chris Tate's avatar Chris Tate Committed by android-build-merger
Browse files

Merge "Don't automatically decline tracking jobs with met initial delays" into pi-dev

am: ed9f3ef9

Change-Id: I0ce9f93fc87a33114cf64c4aa9dff4e1ae325477
parents 6383238d ed9f3ef9
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -90,8 +90,11 @@ public final class TimeController extends StateController {
                return;
            } else if (job.hasTimingDelayConstraint() && evaluateTimingDelayConstraint(job,
                    nowElapsedMillis)) {
                if (!job.hasDeadlineConstraint()) {
                    // If it doesn't have a deadline, we'll never have to touch it again.
                    return;
                }
            }

            boolean isInsert = false;
            ListIterator<JobStatus> it = mTrackedJobs.listIterator(mTrackedJobs.size());