We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dependencies()
1 parent 124d5b2 commit 68021a7Copy full SHA for 68021a7
analyzer/src/main/kotlin/managers/utils/Graph.kt
@@ -132,13 +132,13 @@ internal class Graph private constructor(private val nodeMap: MutableMap<Identif
132
)
133
}
134
135
- return dependencies(root).mapTo(mutableSetOf()) { getPackageReference(it) }
+ return getDependencies(root).mapTo(mutableSetOf()) { getPackageReference(it) }
136
137
138
/**
139
* Return the identifiers of the direct dependencies of the package denoted by [id].
140
*/
141
- private fun dependencies(id: Identifier): Set<Identifier> = nodeMap[id].orEmpty()
+ private fun getDependencies(id: Identifier): Set<Identifier> = nodeMap[id].orEmpty()
142
143
144
private enum class NodeColor { WHITE, GRAY, BLACK }
0 commit comments