Example:
fun check(a: Boolean? == null) { if (a ?: false) throw IllegalStateException() }
After the quick-fix is applied:
fun check(a: Boolean? == null) { if (a == true) throw IllegalStateException() }