arrayOf calls that can be replaced with array literals [...].
Examples:
annotation class MyAnnotation(val strings: Array<String>)
@MyAnnotation(arrayOf("alpha", "beta", "omega")) // replaceable 'arrayOf()'
class MyClass
After the quick-fix is applied:
annotation class MyAnnotation(val strings: Array<String>)
@MyAnnotation(["alpha", "beta", "omega"])
class MyClass