public static void addComment(List<AddCommentTextDto> addCommentTextDtoList, Document document) {
initLicense();
if (CollectionUtils.isEmpty(addCommentTextDtoList)) {
return;
}
…...NUM_0); Comment comment = new Comment(document, addCommentTextDto...getAuth(), "", new Date()); comment.setText(addCommentTextDto.getCommentText());...