If-Null return/break/... foldable to '?:'
Reports an if
expression that checks variable being null or not right after initializing it that can be converted into an elvis operator in the initializer.
Example:
fun test(foo: Int?, bar: Int): Int {
var i = foo
if (i == null) {
return bar
}
return i
}
The quick-fix converts the if
expression with an initializer into an elvis expression:
fun test(foo: Int?, bar: Int): Int {
var i = foo ?: return bar
return i
}
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
FoldInitializerAndIfToElvis- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Kotlin, 242.22892-IJ |
Last modified: 11 September 2024