diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/AlertingNotificationManager.java b/packages/SystemUI/src/com/android/systemui/statusbar/AlertingNotificationManager.java index 1e4f5bbe17c0b..84b40e05d8085 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/AlertingNotificationManager.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/AlertingNotificationManager.java @@ -298,9 +298,7 @@ public abstract class AlertingNotificationManager { mLogger.logUpdateEntry(mEntry, updatePostTime); final long now = mClock.currentTimeMillis(); - mEarliestRemovaltime = isSticky() - ? mEntry.mCreationElapsedRealTime + mStickyDisplayTime - : now + mMinimumDisplayTime; + mEarliestRemovaltime = now + mMinimumDisplayTime; if (updatePostTime) { mPostTime = Math.max(mPostTime, now);