diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/AlertingNotificationManager.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/AlertingNotificationManager.java b/packages/SystemUI/src/com/android/systemui/statusbar/AlertingNotificationManager.java index 81629de9bff9..dddc895f9235 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/AlertingNotificationManager.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/AlertingNotificationManager.java @@ -43,17 +43,17 @@ public abstract class AlertingNotificationManager { protected final ArrayMap<String, AlertEntry> mAlertEntries = new ArrayMap<>(); protected final HeadsUpManagerLogger mLogger; - public AlertingNotificationManager(HeadsUpManagerLogger logger, @Main Handler handler) { - mLogger = logger; - mHandler = handler; - } - protected int mMinimumDisplayTime; protected int mStickyForSomeTimeAutoDismissTime; protected int mAutoDismissTime; @VisibleForTesting public Handler mHandler; + public AlertingNotificationManager(HeadsUpManagerLogger logger, @Main Handler handler) { + mLogger = logger; + mHandler = handler; + } + /** * Called when posting a new notification that should alert the user and appear on screen. * Adds the notification to be managed. |