mirror of
https://github.com/yurisieucuti/treble_evolution.git
synced 2024-11-24 08:36:19 +00:00
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
From 4aa77233388e253361f9dc141c314c78749997be Mon Sep 17 00:00:00 2001
|
|
From: Pierre-Hugues Husson <phh@phh.me>
|
|
Date: Fri, 11 Dec 2020 14:41:09 +0100
|
|
Subject: [PATCH 16/51] Remove useless notification about "console" service
|
|
being running
|
|
|
|
---
|
|
.../core/java/com/android/server/am/ActivityManagerService.java | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/services/core/java/com/android/server/am/ActivityManagerService.java b/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
index 89b53aab1539..90d0666189c8 100644
|
|
--- a/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
+++ b/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
@@ -5222,7 +5222,7 @@ public class ActivityManagerService extends IActivityManager.Stub
|
|
}
|
|
|
|
private void showConsoleNotificationIfActive() {
|
|
- if (!SystemProperties.get("init.svc.console").equals("running")) {
|
|
+ if (!SystemProperties.get("init.svc.console").equals("running") || true) {
|
|
return;
|
|
}
|
|
String title = mContext
|
|
--
|
|
2.25.1
|
|
|