Inspectopedia Help

Guard clause can be replaced with Kotlin's function call

Reports guard clauses that can be replaced with a function call.

Example:

fun test(foo: Int?) { if (foo == null) throw IllegalArgumentException("foo") // replaceable clause }

After the quick-fix is applied:

fun test(foo: Int?) { checkNotNull(foo) }

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Kotlin, @snapshot@

Last modified: 13 July 2023