use of org.obiba.mica.core.event.CommentDeletedEvent in project mica2 by obiba.
the class CommentsService method delete.
public void delete(Comment comment) throws NoSuchCommentException {
commentsRepository.delete(comment);
eventBus.post(new CommentDeletedEvent(comment));
}
Aggregations