【validator】更新提示的逗号为中文

pull/3/head
fengshuonan 2021-01-16 18:57:39 +08:00
parent a45eaa2425
commit 4debb92dc5
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class ResourceFactory {
for (String validateGroup : validateGroups) { for (String validateGroup : validateGroups) {
Set<String> validateMessage = groupAnnotations.get(validateGroup); Set<String> validateMessage = groupAnnotations.get(validateGroup);
if (validateMessage != null && !validateMessage.isEmpty()) { if (validateMessage != null && !validateMessage.isEmpty()) {
finalValidateMessages.append(StrUtil.join(",", validateMessage)); finalValidateMessages.append(StrUtil.join("", validateMessage));
} }
} }
} }