提交 3323efac 编写于 作者: wu-sheng's avatar wu-sheng

1.修改一处方法名

上级 0ee1bcfe
......@@ -35,15 +35,12 @@ public class ChainRelate {
private void classifiedChains(UncategorizeChainInfo child) {
boolean isContained = false;
for (Map.Entry<String, CategorizedChainInfo> entry : categorizedChainInfoMap.entrySet()) {
if (!entry.getValue().isAlreadyContained(child) && entry.getValue().isContained(child)) {
entry.getValue().add(child);
chainDetailMap.put(child.getChainToken(), new ChainDetail(child));
isContained = true;
}
if (entry.getValue().isAlreadyContained(child)) {
isContained = true;
}else if(entry.getValue().isContained(child)){
entry.getValue().add(child);
chainDetailMap.put(child.getChainToken(), new ChainDetail(child));
isContained = true;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册