mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-08 09:38:26 +08:00
Fixed: an error issue when the table comment was empty after configuring ‘setTableCommentFormat’.
This commit is contained in:
parent
874ebf1c46
commit
d756b14424
@ -50,7 +50,7 @@ public class Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public String getComment() {
|
public String getComment() {
|
||||||
if(StringUtil.isNotBlank(comment)) {
|
if (StringUtil.isNotBlank(comment)) {
|
||||||
return globalConfig.getJavadocConfig().formatTableComment(comment);
|
return globalConfig.getJavadocConfig().formatTableComment(comment);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user