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

Commit 64cd94d5 authored by Sudheer Shanka's avatar Sudheer Shanka
Browse files

Remove a couple of TODOs in BroadcastQueueModernImpl.

Legacy queue used to delay broadcasts in some cases
where no. of bg services are above a certain threshold.
Modern queue does not do this, so ignore a couple of
callbacks related to this behavior.

Bug: 261899716
Test: TH
Change-Id: Ifa3612ea2a0e9ced16407391ed532c5b8345583c
parent a94af75b
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1578,13 +1578,15 @@ class BroadcastQueueModernImpl extends BroadcastQueue {

    @Override
    public boolean isDelayBehindServices() {
        // TODO: implement
        // Modern queue does not alter the broadcasts delivery behavior based on background
        // services, so ignore.
        return false;
    }

    @Override
    public void backgroundServicesFinishedLocked(int userId) {
        // TODO: implement
        // Modern queue does not alter the broadcasts delivery behavior based on background
        // services, so ignore.
    }

    /**