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

Not necessary.

This commit is contained in:
Cedric Beust 2015-12-02 19:10:21 -08:00
parent b1a4508d03
commit 6c60b15bc0

View file

@ -97,7 +97,7 @@ class KotlinCompiler @Inject constructor(val localRepo : LocalRepo,
*/
private fun compilerFirst(list: List<File>): List<File> {
val result = arrayListOf<File>()
list.forEach { it
list.forEach {
if (it.name.startsWith("kotlin-")) result.add(0, it)
else result.add(it)
}