mirror of
https://github.com/yurisieucuti/treble_evolution.git
synced 2024-11-24 12:06:19 +00:00
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
From 6399c20c1e948d82ae0c823f5bd86b59e8945851 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 4dad2d560526..5d1f27ac923d 100644
|
|
--- a/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
+++ b/services/core/java/com/android/server/am/ActivityManagerService.java
|
|
@@ -5156,7 +5156,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
|
|
|