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

Commit 4a79daea authored by Christopher Tate's avatar Christopher Tate Committed by Christopher Tate
Browse files

Fix which index goes where

Change-Id: If4cf7efd4d7962eb5c10b487482653d86d92d2c6
parent 64126bc3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -287,8 +287,8 @@ public class JobSchedulerService extends com.android.server.SystemService
                ArraySet<JobStatus> jobs = mJobs.getJobs();
                for (int i=0; i<jobs.size(); i++) {
                    JobStatus job = jobs.valueAt(i);
                    for (int j=0; j<mControllers.size(); j++) {
                        mControllers.get(i).maybeStartTrackingJob(job);
                    for (int controller=0; controller<mControllers.size(); controller++) {
                        mControllers.get(controller).maybeStartTrackingJob(job);
                    }
                }
                // GO GO GO!