Move adding new ThreadList items to ViewModel

This commit is contained in:
Torsten Grote
2021-01-07 16:57:12 -03:00
parent d393b79ced
commit 21e56284fb
13 changed files with 224 additions and 259 deletions

View File

@@ -13,15 +13,12 @@ public interface MessageTree<T extends MessageTree.MessageNode> {
void add(Collection<T> nodes);
@Deprecated
void add(T node);
@Deprecated
void clear();
List<T> depthFirstOrder();
@Deprecated
boolean contains(MessageId m);
@NotNullByDefault

View File

@@ -109,7 +109,6 @@ public interface ForumManager {
/**
* Returns the group count for the given forum.
*/
@Deprecated
GroupCount getGroupCount(GroupId g) throws DbException;
/**