Remove unused methods
This commit is contained in:
parent
e95916c529
commit
5d3f6ece1f
1 changed files with 0 additions and 15 deletions
|
@ -267,14 +267,6 @@ public class MessagingController implements Runnable {
|
||||||
messages.addFirst(m);
|
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.
|
* Add a stacked notification that this is a summary notification for.
|
||||||
* @param msg the message to add a stacked 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));
|
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
|
* @param ref the message to check for
|
||||||
* @return null or the notification ID of a stacked notification for the given message
|
* @return null or the notification ID of a stacked notification for the given message
|
||||||
|
|
Loading…
Reference in a new issue