Commit 2f79bd6d by zhiwj

去掉判断

parent 5f29133a
......@@ -58,7 +58,7 @@ public class FieldBase {
if (msg != null) {
return msg;
}
if (value != null && !"".equals(value)) {
if (value != null && !"".equals(value.trim())) {
String[] values = value.split(",");
for (String val : values) {
boolean exist = false;
......
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