SNRK-71: pathString replaced with toString()

This commit is contained in:
liubar.pa 2023-05-04 18:57:25 +03:00
parent 859c53745f
commit e90c9728c1

View File

@ -22,7 +22,7 @@ public suspend fun buildDependencyGraph(root: Directory): DependencyGraph {
}
private suspend fun buildNodes(folder: Directory, nodes: HashMap<FileName, DependencyGraphNode>) {
val pathString = folder.getPath().pathString
val pathString = folder.getPath().toString()
assert(!nodes.containsKey(pathString))