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

Commit f990e93d authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add null check before starting delayed cpuset task" into main

parents 78815535 88fa3e2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ public final class CpuMonitorService extends SystemService {

    @Override
    public void onBootPhase(int phase) {
        if (phase != PHASE_BOOT_COMPLETED) {
        if (phase != PHASE_BOOT_COMPLETED || mHandler == null) {
            return;
        }
        Slogf.i(TAG, "Stopping periodic cpuset reading on boot complete");