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

Switch parameter ordering.

This commit is contained in:
Cedric Beust 2015-12-08 15:45:42 -08:00
parent e65e111ecb
commit dba627bd0f

View file

@ -165,7 +165,7 @@ class BuildConfig {
val fields = arrayListOf<Field>()
fun field(name: String, type: String, value: Any) {
fun field(type: String, name: String, value: Any) {
fields.add(Field(name, type, value))
}
}