diff options
| author | 2020-07-27 16:21:16 +0100 | |
|---|---|---|
| committer | 2020-07-27 16:48:28 +0000 | |
| commit | 696f0adb59792c6ad759de400e57db40783f6ddc (patch) | |
| tree | 766d529e82181dac8784c1f3ebbc804444052c71 | |
| parent | b2991250aad9b7b9c0a5e038f5458d94e56c5d48 (diff) | |
Fix build by using ALLOWLIST_TOKEN
CL ag/12184026 uses WHITELIST_TOKEN but raced with ag/12210670, which
replaces it with ALLOWLIST_TOKEN.
Bug: 162232399
Test: TH builds
Change-Id: Ib0b06d50a1ab2bd84dd18074628ee3d82ba94022
| -rwxr-xr-x | services/core/java/com/android/server/notification/NotificationManagerService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java index cf48e026e830..cf08e735bbd2 100755 --- a/services/core/java/com/android/server/notification/NotificationManagerService.java +++ b/services/core/java/com/android/server/notification/NotificationManagerService.java @@ -9938,7 +9938,7 @@ public class NotificationManagerService extends SystemService { @Override public IBinder getToken() { - return WHITELIST_TOKEN; + return ALLOWLIST_TOKEN; } @Override |