Example:
fun test(): Boolean { return 2.compareTo(1) > 0 // replaceable 'compareTo()' }
After the quick-fix is applied:
fun test(): Boolean { return 2 > 1 }