30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From 2f4e9b7a4cc9c22ba9586fe855c31f99cc47abbf Mon Sep 17 00:00:00 2001
|
|
From: Pranav Vashi <neobuddy89@gmail.com>
|
|
Date: Sat, 17 Sep 2022 12:20:38 +0530
|
|
Subject: [PATCH 40/43] ThemeOverlayController: Remove repeated monet check
|
|
|
|
Change-Id: I6608df48c1a89a87eaf08d9f267e0a83e9bbd3d1
|
|
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
|
|
---
|
|
.../com/android/systemui/theme/ThemeOverlayController.java | 4 ----
|
|
1 file changed, 4 deletions(-)
|
|
|
|
diff --git a/packages/SystemUI/src/com/android/systemui/theme/ThemeOverlayController.java b/packages/SystemUI/src/com/android/systemui/theme/ThemeOverlayController.java
|
|
index 84e32a1dbaae..44b54080efc4 100644
|
|
--- a/packages/SystemUI/src/com/android/systemui/theme/ThemeOverlayController.java
|
|
+++ b/packages/SystemUI/src/com/android/systemui/theme/ThemeOverlayController.java
|
|
@@ -551,10 +551,6 @@ public class ThemeOverlayController implements CoreStartable, Dumpable {
|
|
},
|
|
UserHandle.USER_ALL);
|
|
|
|
- if (!mIsMonetEnabled) {
|
|
- return;
|
|
- }
|
|
-
|
|
mUserTracker.addCallback(mUserTrackerCallback, mMainExecutor);
|
|
|
|
mConfigurationController.addCallback(mConfigurationListener);
|
|
--
|
|
2.34.1
|
|
|