Kotlin
'arrayOf' call can be replaced with array literal [...]
Info
New
Last modified: 03 December 2024 Reports 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
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
ReplaceArrayOfWithLiteral
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Kotlin, 243.23126-IJ |
Thanks for your feedback!
Was this page helpful?