1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 16:28:12 -07:00
This commit is contained in:
Cedric Beust 2017-02-17 13:33:22 -08:00
parent f677b06901
commit b864ea5ded

View file

@ -165,7 +165,7 @@ class RemoteDependencyData @Inject constructor(val executors: KobaltExecutors, v
GraphUtil.displayGraph(it.compileDependencies, GraphUtil.displayGraph(it.compileDependencies,
{dd: DependencyData -> dd.children }, {dd: DependencyData -> dd.children },
{dd: DependencyData, indent: String -> {dd: DependencyData, indent: String ->
println(indent + dd.id + " " + (if (! dd.isLatest) "(old)" else "")) println(" " + indent + dd.id + " " + (if (! dd.isLatest) "(old)" else ""))
}) })
} }