toString() in string templates that can be safely removed.
Example:
fun foo(a: Int, b: Int) = a + b
fun test(): String {
return "Foo: ${foo(0, 4).toString()}" // 'toString()' is redundant
}
After the quick-fix is applied:
fun foo(a: Int, b: Int) = a + b
fun test(): String {
return "Foo: ${foo(0, 4)}"
}