1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Not needed.

This commit is contained in:
Cedric Beust 2015-11-07 15:04:15 -08:00
parent aef0b585b2
commit ef6fd3f2a2

View file

@ -155,7 +155,7 @@ public class BuildFileCompiler @Inject constructor(@Assisted("buildFiles") val b
}.compile(context = context)
}
class BuildScriptInfo(val projects: List<Project>, val classLoader: ClassLoader)
class BuildScriptInfo(val projects: List<Project>)
private fun parseBuildScriptJarFile(buildScriptJarFile: File, urls: List<URL>) : BuildScriptInfo {
val projects = arrayListOf<Project>()
@ -233,7 +233,7 @@ public class BuildFileCompiler @Inject constructor(@Assisted("buildFiles") val b
}
}
}
val result = BuildScriptInfo(topologicalProjects.sort(ArrayList(all)), classLoader)
val result = BuildScriptInfo(topologicalProjects.sort(ArrayList(all)))
// Notify possible listeners (e.g. KobaltServer) we now have all the projects
observable.onNext(result)