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)
  }