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

Commit 882cfee1 authored by Dave Mankoff's avatar Dave Mankoff
Browse files

Ensure that CommandQueue is a singleton.

Bug: 143844964
Test: manual
Change-Id: Ic3dd6dd98dcd941e2c154fd215691b722015de4c
parent 9fa5bfd7
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@ package com.android.systemui.statusbar;

import android.content.Context;

import javax.inject.Singleton;

import dagger.Module;
import dagger.Provides;

@@ -30,6 +32,7 @@ public class StatusBarDependenciesModule {
     * Provides our instance of CommandQueue which is considered optional.
     */
    @Provides
    @Singleton
    public CommandQueue provideCommandQueue(Context context) {
        return new CommandQueue(context);
    }