Commit 272fe317 authored by yanzg's avatar yanzg

修复bug

parent 9d6ae6e7
......@@ -18,6 +18,7 @@ public class ArrayHelper {
* @param froms 参数列表
* @return 第一个非空字符串
*/
@SafeVarargs
public static <T extends Object> List<T> megerNotEmpty(T from, Collection<T>... froms) {
List<T> tos = new ArrayList<>();
if (from != null && !StringHelper.isEmpty(from)) {
......
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