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

Better toString().

This commit is contained in:
Cedric Beust 2016-07-01 03:52:50 -08:00
parent 35f4117ca9
commit f31c2a5c49

View file

@ -59,7 +59,7 @@ class TaskManager @Inject constructor(val args: Args,
fun matches(projectName: String) = project == null || project == projectName
override fun toString() = taskName
override fun toString() = id
}
class RunTargetResult(val taskResult: TaskResult, val messages: List<String>)