Revert "fix bug" 中isNotBlank 的修改

This reverts commit 8ead58a44e.
This commit is contained in:
fengchenchen
2021-10-16 23:10:02 +08:00
parent 8ead58a44e
commit 39abb479b0
@@ -45,7 +45,7 @@ public class ValidUtil {
for (ConstraintViolation<Object> constraintViolation : set) {
msg.append(constraintViolation.getMessage()).append(",");
}
if (StringUtils.isBlank(msg)) {
if (StringUtils.isNotBlank(msg)) {
throw new JeroBootException(msg.substring(0,msg.length()-1));
}
}