fix near constant removal
This commit is contained in:
parent
8105f02dc7
commit
4b9fc8f7a1
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ func WithoutConstantNears(ctx context.Context, g *d2graph.Graph) (nears []*d2gra
|
||||||
nears = append(nears, obj)
|
nears = append(nears, obj)
|
||||||
g.Objects = append(g.Objects[:i], g.Objects[i+1:]...)
|
g.Objects = append(g.Objects[:i], g.Objects[i+1:]...)
|
||||||
i--
|
i--
|
||||||
delete(obj.Parent.Children, obj.ID)
|
delete(obj.Parent.Children, strings.ToLower(obj.ID))
|
||||||
for i := 0; i < len(obj.Parent.ChildrenArray); i++ {
|
for i := 0; i < len(obj.Parent.ChildrenArray); i++ {
|
||||||
if obj.Parent.ChildrenArray[i] == obj {
|
if obj.Parent.ChildrenArray[i] == obj {
|
||||||
obj.Parent.ChildrenArray = append(obj.Parent.ChildrenArray[:i], obj.Parent.ChildrenArray[i+1:]...)
|
obj.Parent.ChildrenArray = append(obj.Parent.ChildrenArray[:i], obj.Parent.ChildrenArray[i+1:]...)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue