From 6a5ca4f26efe199ff3d10cfb93e29d1ae745bdd5 Mon Sep 17 00:00:00 2001 From: Ned Burns Date: Wed, 2 Jan 2019 16:56:40 -0500 Subject: [PATCH] Mark NotificationEntry.Data.key as final Test: atest Change-Id: I953e44a892f6cf0355cc26fd1522c80f65fd95b0 --- .../systemui/statusbar/notification/NotificationData.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/NotificationData.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/NotificationData.java index 27c283749abcc..a51896ee69fc2 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/NotificationData.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/NotificationData.java @@ -90,7 +90,7 @@ public class NotificationData { private static final long INITIALIZATION_DELAY = 400; private static final long NOT_LAUNCHED_YET = -LAUNCH_COOLDOWN; private static final int COLOR_INVALID = 1; - public String key; + public final String key; public StatusBarNotification notification; public NotificationChannel channel; public long lastAudiblyAlertedMs;