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

Formatting.

This commit is contained in:
Cedric Beust 2015-10-20 03:56:20 -07:00
parent 5b83dc4b88
commit e792680dd5

View file

@ -94,8 +94,7 @@ public class Kobalt {
/** /**
* @return the projects sorted topologically. * @return the projects sorted topologically.
*/ */
fun sortProjects(allProjects: ArrayList<Project>) : List<Project> fun sortProjects(allProjects: ArrayList<Project>) = topological.sort(allProjects)
= topological.sort(allProjects)
fun findPlugin(name: String) = Plugins.findPlugin(name) fun findPlugin(name: String) = Plugins.findPlugin(name)
} }