Commit aea3e881 authored by yanzg's avatar yanzg

消除成功接收处理

parent a76832a6
...@@ -89,9 +89,11 @@ public class StringHelper { ...@@ -89,9 +89,11 @@ public class StringHelper {
if (!isEmpty(from0)) { if (!isEmpty(from0)) {
return from0; return from0;
} }
for (String from : froms) { if (froms != null) {
if (!isEmpty(from)) { for (String from : froms) {
return from; if (!isEmpty(from)) {
return from;
}
} }
} }
return EMPTY; return EMPTY;
......
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