Loading packages/ExtServices/src/android/ext/services/notification/Ranker.java +1 −6 Original line number Diff line number Diff line Loading @@ -73,14 +73,9 @@ public final class Ranker extends NotificationRankerService { mUnbundledNotifications.put(sbn.getPackageName(), notificationsForPackage); if (notificationsForPackage.size() >= AUTOBUNDLE_AT_COUNT) { // Autobundle all but the most recently posted (not updated) notification. int count = 0; for (String key : notificationsForPackage) { if (count < notificationsForPackage.size() - 1) { notificationsToBundle.add(key); } count++; } } } if (notificationsToBundle.size() > 0) { Loading Loading
packages/ExtServices/src/android/ext/services/notification/Ranker.java +1 −6 Original line number Diff line number Diff line Loading @@ -73,14 +73,9 @@ public final class Ranker extends NotificationRankerService { mUnbundledNotifications.put(sbn.getPackageName(), notificationsForPackage); if (notificationsForPackage.size() >= AUTOBUNDLE_AT_COUNT) { // Autobundle all but the most recently posted (not updated) notification. int count = 0; for (String key : notificationsForPackage) { if (count < notificationsForPackage.size() - 1) { notificationsToBundle.add(key); } count++; } } } if (notificationsToBundle.size() > 0) { Loading