Inspectopedia Help

Fully qualified name can be replaced with existing import alias

Reports fully qualified names that can be replaced with an existing import alias.

Example:

import foo.Foo as Bar fun main() { foo.Foo() }

After the quick-fix is applied:

import foo.Foo as Bar fun main() { Bar() }

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Kotlin, @snapshot@

Last modified: 13 July 2023