return
statement should be rewritten with expression body syntax KT-W1051Functions which only contain a return statement can be collapsed to an expression body. This shortens the code and makes it more readable.
fun stuff(): Int {
return 5
}
Prefer using the expression body syntax.
fun stuff() = 5