Lists.newArrayList()修改为new ArrayList()

This commit is contained in:
wangxin
2019-05-22 12:42:29 +08:00
parent b2aac3e567
commit 8c9706fb0e

View File

@@ -1756,7 +1756,7 @@ public abstract class BaseService {
if(toSendFirstAsnIpCfgs.containsKey(group.getAsnId())) {
toSendFirstAsnIpCfgs.get(group.getAsnId()).add(cfg);
}else {
toSendFirstAsnIpCfgs.put(group.getAsnId(), Lists.newArrayList());
toSendFirstAsnIpCfgs.put(group.getAsnId(), new ArrayList());
toSendFirstAsnIpCfgs.get(group.getAsnId()).add(cfg);
}