Lists.newArrayList()修改为new ArrayList()
This commit is contained in:
@@ -1756,7 +1756,7 @@ public abstract class BaseService {
|
|||||||
if(toSendFirstAsnIpCfgs.containsKey(group.getAsnId())) {
|
if(toSendFirstAsnIpCfgs.containsKey(group.getAsnId())) {
|
||||||
toSendFirstAsnIpCfgs.get(group.getAsnId()).add(cfg);
|
toSendFirstAsnIpCfgs.get(group.getAsnId()).add(cfg);
|
||||||
}else {
|
}else {
|
||||||
toSendFirstAsnIpCfgs.put(group.getAsnId(), Lists.newArrayList());
|
toSendFirstAsnIpCfgs.put(group.getAsnId(), new ArrayList());
|
||||||
toSendFirstAsnIpCfgs.get(group.getAsnId()).add(cfg);
|
toSendFirstAsnIpCfgs.get(group.getAsnId()).add(cfg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user