mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-27 00:38:11 -07:00
Not needed.
This commit is contained in:
parent
aef0b585b2
commit
ef6fd3f2a2
1 changed files with 2 additions and 2 deletions
|
@ -155,7 +155,7 @@ public class BuildFileCompiler @Inject constructor(@Assisted("buildFiles") val b
|
||||||
}.compile(context = context)
|
}.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 {
|
private fun parseBuildScriptJarFile(buildScriptJarFile: File, urls: List<URL>) : BuildScriptInfo {
|
||||||
val projects = arrayListOf<Project>()
|
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
|
// Notify possible listeners (e.g. KobaltServer) we now have all the projects
|
||||||
observable.onNext(result)
|
observable.onNext(result)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue