File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
analyzer/src/main/kotlin/managers/utils Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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() }
You can’t perform that action at this time.
0 commit comments