From dba627bd0f29b50fed6abac6e99feaeb27a56594 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Tue, 8 Dec 2015 15:45:42 -0800 Subject: [PATCH] Switch parameter ordering. --- src/main/kotlin/com/beust/kobalt/api/Project.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/beust/kobalt/api/Project.kt b/src/main/kotlin/com/beust/kobalt/api/Project.kt index 53dccceb..1cf16a00 100644 --- a/src/main/kotlin/com/beust/kobalt/api/Project.kt +++ b/src/main/kotlin/com/beust/kobalt/api/Project.kt @@ -165,7 +165,7 @@ class BuildConfig { val fields = arrayListOf() - fun field(name: String, type: String, value: Any) { + fun field(type: String, name: String, value: Any) { fields.add(Field(name, type, value)) } }