Remove unused methods

This commit is contained in:
cketti 2015-06-28 10:20:21 +02:00
parent e95916c529
commit 5d3f6ece1f

View file

@ -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<Integer> 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