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

Commit 41cf152c authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Ensure that CommandQueue is a singleton."

parents 80018c08 882cfee1
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);
    }