/* TODO - we don’t have the Sone anymore. should this happen? */
return;
}
database.removePosts(sone.get());
for (Post post : sone.get().getPosts()) {
eventBus.post(new PostRemovedEvent(post));
}
database.removePostReplies(sone.get());
for (PostReply reply : sone.get().getReplies()) {
eventBus.post(new PostReplyRemovedEvent(reply));
}