记得上下班打卡 | git大法好,push需谨慎

Commit e3254c12 authored by 姜秀龙's avatar 姜秀龙

无收获地址bug修复

parent ea6870ce
......@@ -32,8 +32,15 @@ public class ValidationUtils {
break;
}
}
if (!isExcluded && (value == null || value == "")) {
if (!isExcluded) {
if (value == null) {
return true;
} else if (value instanceof String) {
String strValue = ((String) value).trim();
if (strValue.isEmpty()) {
return true;
}
}
}
}
} catch (IllegalAccessException e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment