Loading packages/SystemUI/src/com/android/systemui/statusbar/NotificationData.java +1 −1 Original line number Diff line number Diff line Loading @@ -230,7 +230,7 @@ public class NotificationData { } else if (aRank != bRank) { return aRank - bRank; } else { return (int) (nb.getNotification().when - na.getNotification().when); return Long.compare(nb.getNotification().when, na.getNotification().when); } } }; Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/NotificationData.java +1 −1 Original line number Diff line number Diff line Loading @@ -230,7 +230,7 @@ public class NotificationData { } else if (aRank != bRank) { return aRank - bRank; } else { return (int) (nb.getNotification().when - na.getNotification().when); return Long.compare(nb.getNotification().when, na.getNotification().when); } } }; Loading