Parcourir la source

do not remove the first node(#339) (#355)

Do not remove the first node
master
leitao Carpenter Lee il y a 5 ans
Parent
révision
feb44e74d4
1 fichiers modifiés avec 0 ajouts et 5 suppressions
  1. +0
    -5
      sentinel-dashboard/src/main/java/com/taobao/csp/sentinel/dashboard/view/vo/ResourceVo.java

+ 0
- 5
sentinel-dashboard/src/main/java/com/taobao/csp/sentinel/dashboard/view/vo/ResourceVo.java Voir le fichier

@@ -52,12 +52,7 @@ public class ResourceVo {
return null;
}
List<ResourceVo> list = new ArrayList<>();
boolean isFirst = true;
for (NodeVo nodeVo : nodeVos) {
if (isFirst) {
isFirst = false;
continue;
}
ResourceVo vo = new ResourceVo();
vo.parentTtId = nodeVo.getParentId();
vo.ttId = nodeVo.getId();


Chargement…
Annuler
Enregistrer