fastmodel-compare/src/main/java/com/aliyun/fastmodel/compare/impl/table/CommentCompare.java [39:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private boolean isChangeComment(Comment comment, Comment afterComment) {
        if (comment == null && afterComment == null) {
            return false;
        }
        if (comment == null && afterComment != null) {
            return StringUtils.isNotBlank(afterComment.getComment());
        }
        if (comment != null && afterComment == null) {
            return StringUtils.isNotBlank(comment.getComment());
        }
        return !StringUtils.equals(StringUtils.trimToEmpty(comment.getComment()),
            StringUtils.trimToEmpty(afterComment.getComment()));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



fastmodel-compare/src/main/java/com/aliyun/fastmodel/compare/impl/table/ColumnCompare.java [340:352]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private boolean isChangeComment(Comment comment, Comment afterComment) {
        if (comment == null && afterComment == null) {
            return false;
        }
        if (comment == null && afterComment != null) {
            return StringUtils.isNotBlank(afterComment.getComment());
        }
        if (comment != null && afterComment == null) {
            return StringUtils.isNotBlank(comment.getComment());
        }
        return !StringUtils.equals(StringUtils.trimToEmpty(comment.getComment()),
            StringUtils.trimToEmpty(afterComment.getComment()));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



