CollUtil.subtractToList bug fix

This commit is contained in:
hitfire
2020-06-10 15:23:44 +08:00
committed by hitfire
parent 94335d176b
commit d03e3b5b94

View File

@@ -345,7 +345,7 @@ public class CollUtil {
return ListUtil.empty(); return ListUtil.empty();
} }
if (isEmpty(coll2)) { if (isEmpty(coll2)) {
return ListUtil.list(true, coll2); return ListUtil.list(true, coll1);
} }
//将被交数用链表储存,防止因为频繁扩容影响性能 //将被交数用链表储存,防止因为频繁扩容影响性能