mirror of
https://github.com/ponces/treble_aosp.git
synced 2025-04-14 20:55:47 +00:00
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
From bf226a093c6186c840c91ccce897010a279bb266 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/56] 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 cd929c1883d0..6fea71c1c499 100644
|
|
--- a/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
+++ b/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
@@ -5252,7 +5252,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.43.0
|
|
|