diff options
| author | 2019-11-05 23:32:29 +0000 | |
|---|---|---|
| committer | 2019-11-05 23:32:29 +0000 | |
| commit | 689c2cfbaaf0283f9a0449be6714d3bc1b1e2d6b (patch) | |
| tree | 59f5fcf5e50837f31accc46ea8a4d6f63651069e | |
| parent | fc6eb1c9ab78ccde15a197e0aa1c44d22853a65d (diff) | |
| parent | 50cb05b446977fc37013d57b31603ec7bf799543 (diff) | |
Merge "Ensure that CommandQueue is a singleton."
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/StatusBarDependenciesModule.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarDependenciesModule.java b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarDependenciesModule.java index 48f02cc147db..556284d26638 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarDependenciesModule.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/StatusBarDependenciesModule.java @@ -30,6 +30,7 @@ public class StatusBarDependenciesModule { * Provides our instance of CommandQueue which is considered optional. */ @Provides + @Singleton public CommandQueue provideCommandQueue(Context context) { return new CommandQueue(context); } |