api: add method to remove MessageNodes

Co-authored-by: trimbe <benno.tremback@gmail.com>
This commit is contained in:
Adam
2019-03-02 18:58:40 -05:00
parent c44d8a96b7
commit 24003c69a7
4 changed files with 86 additions and 0 deletions

View File

@@ -44,4 +44,11 @@ public interface ChatLineBuffer
* @return the length
*/
int getLength();
/**
* Removes a message node
*
* @param node the {@link MessageNode} to remove
*/
void removeMessageNode(MessageNode node);
}