Inspectopedia Help

Useless call on collection type

Reports filter… calls from the standard library on already filtered collections.

Several functions from the standard library such as filterNotNull() or filterIsInstance have sense only when they are called on receivers that have types distinct from the resulting one. Otherwise, such calls can be omitted as the result will be the same.

Remove redundant call quick-fix can be used to amend the code automatically.

Example:

fun test(list: List<String>) { val x = list.filterNotNull() // quick-fix simplifies to 'list' val y = list.filterIsInstance<String>() // quick-fix simplifies to 'list' }

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Kotlin, @snapshot@

Last modified: 13 July 2023