remove superfluous fixupAdjacencies calls

fixupAdjacencies fixes up adjancencies of mapped nodes. The nodes at
the call sites we are removing aren't mapped.
This commit is contained in:
Matthias Radestock
2017-12-17 15:40:26 +00:00
parent cc859926ef
commit e5117a652f
2 changed files with 0 additions and 2 deletions

View File

@@ -100,7 +100,6 @@ func (c connectionJoin) Render(rpt report.Report) Nodes {
}
}
ret.copyUnmatched(inputNodes)
ret.fixupAdjacencies(inputNodes)
ret.fixupAdjacencies(endpoints)
return ret.result()
}

View File

@@ -116,7 +116,6 @@ func (e endpoints2Processes) Render(rpt report.Report) Nodes {
}
}
ret.copyUnmatched(processes)
ret.fixupAdjacencies(processes)
ret.fixupAdjacencies(endpoints)
return ret.result()
}