From 5d3f6ece1fd14b940ccf4ca7ac516acc2a711b85 Mon Sep 17 00:00:00 2001 From: cketti Date: Sun, 28 Jun 2015 10:20:21 +0200 Subject: [PATCH] Remove unused methods --- .../fsck/k9/controller/MessagingController.java | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/k9mail/src/main/java/com/fsck/k9/controller/MessagingController.java b/k9mail/src/main/java/com/fsck/k9/controller/MessagingController.java index a027a41c1..1a3f842d8 100644 --- a/k9mail/src/main/java/com/fsck/k9/controller/MessagingController.java +++ b/k9mail/src/main/java/com/fsck/k9/controller/MessagingController.java @@ -267,14 +267,6 @@ public class MessagingController implements Runnable { messages.addFirst(m); } - /** - * Add a stacked notification that this is a summary notification for. - * @param ref the message to add a stacked notification for - * @param notificationId the id of the stacked notification - */ - public void addStackedChildNotification(final MessageReference ref, final int notificationId) { - stackedNotifications.put(ref.getUid(), new Integer(notificationId)); - } /** * Add a stacked notification that this is a summary notification for. * @param msg the message to add a stacked notification for @@ -284,13 +276,6 @@ public class MessagingController implements Runnable { stackedNotifications.put(msg.getUid(), new Integer(notificationId)); } - /** - * @return the IDs of all stacked notifications this is a summary notification for. - */ - public Collection getStackedChildNotifications() { - return stackedNotifications.values(); - } - /** * @param ref the message to check for * @return null or the notification ID of a stacked notification for the given message