SNRK-70: obsollete code is removed

This commit is contained in:
liubar.pa 2023-04-30 22:43:21 +03:00
parent 7a57de989b
commit b7a439f711

View File

@ -11,12 +11,5 @@ public suspend fun buildDocument(documentPath: String) {
val documentDirectory: Directory = LocalDirectory(documentPath)
val documentRoot = documentDirectory.get(DEFAULT_DOCUMENT_ROOT)
val (dependencies, vertex) = parseMd(documentRoot.readAll())
val documentDependencies: HashMap<String, Dependencies> = HashMap<String, Dependencies>()
val dependencyGraph: HashMap<String, DependencyGraphVertex> =
HashMap<String, DependencyGraphVertex>()
documentDependencies.put(documentPath, dependencies)
dependencyGraph.put(documentPath, vertex)
TODO()
}