Commit b1967724 authored by yanzg's avatar yanzg

常规BUG的修改

parent 1e77ab8e
...@@ -183,11 +183,10 @@ public class StringHelper { ...@@ -183,11 +183,10 @@ public class StringHelper {
/** /**
* 传入很多字符串,获取第一个非空的字符串,至少需要两个参数 * 传入很多字符串,获取第一个非空的字符串,至少需要两个参数
* *
* @param from0 第一个参数
* @param froms 参数列表 * @param froms 参数列表
* @return 第一个非空字符串 * @return 第一个非空字符串
*/ */
public static String getFirstNull(String from0, String... froms) { public static String getFirstNull(String... froms) {
return getFirstRun(EMPTY, null, froms); return getFirstRun(EMPTY, null, froms);
} }
......
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