Skip to content

Commit 937c5ea

Browse files
committed
docs(Graph): Fix syntax highlighting of a TODO statement
Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent cb6a186 commit 937c5ea

File tree

1 file changed

+3
-2
lines changed
  • analyzer/src/main/kotlin/managers/utils

1 file changed

+3
-2
lines changed

analyzer/src/main/kotlin/managers/utils/Graph.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,10 @@ internal class Graph<T> private constructor(private val nodeMap: MutableMap<T, M
7070

7171
/**
7272
* Return a copy of this Graph with edges removed so that no circle remains.
73+
*
7374
* TODO: The code has been copied from DependencyGraphBuilder as a temporary solutions. Once GoMod is migrated to
74-
* use the dependency graph, this function can be dropped and the one from DependencyGraphBuilder can be re-used,
75-
* see also https://github.com/oss-review-toolkit/ort/issues/4249.
75+
* use the dependency graph, this function can be dropped and the one from DependencyGraphBuilder can be
76+
* re-used, see also https://github.com/oss-review-toolkit/ort/issues/4249.
7677
*/
7778
fun breakCycles(): Graph<T> {
7879
val outgoingEdgesForNodes = nodeMap.mapValuesTo(mutableMapOf()) { it.value.toMutableSet() }

0 commit comments

Comments
 (0)