Upgraded to Kotlin 1.5.0

This commit is contained in:
Erik C. Thauvin 2021-04-26 15:23:21 -07:00
parent c950d7349a
commit aaf44db38a
16 changed files with 77 additions and 75 deletions

View file

@ -69,7 +69,7 @@ open class LocalProperties {
}
private fun keyToEnv(key: String): String {
return key.replace('-', '_').toUpperCase()
return key.replace('-', '_').uppercase()
}
}
}