Inspectopedia Help

Java Collections static method call can be replaced with Kotlin stdlib

Reports a Java Collections static method call that can be replaced with Kotlin stdlib.

Example:

import java.util.Collections fun test() { val mutableList = mutableListOf(1, 2) Collections.fill(mutableList, 3) }

The quick fix replaces Java Collections static method call with the corresponding Kotlin stdlib method call:

import java.util.Collections fun test() { val mutableList = mutableListOf(1, 2) mutableList.fill(3) }

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Kotlin, @snapshot@

Last modified: 13 July 2023