SNARK-71: redundant else is removed

This commit is contained in:
liubar.pa 2023-05-04 18:54:21 +03:00
parent 06bcdbd489
commit 859c53745f

View File

@ -43,7 +43,6 @@ public suspend fun getDependencies(node: DependencyGraphNode): Set<FileName> {
for (dependency in node.dependencies) {
when (dependency) {
is IncludeDependency -> dependencies.addAll(dependency.includeList)
else -> TODO()
}
}