Kotlin
Assignment can be replaced with operator assignment
Info
Last modified: 03 December 2024 Reports modifications of variables with a simple assignment (such as y = y + x
) that can be replaced with an operator assignment.
The quick-fix replaces the assignment with an assignment operator.
Example:
fun foo() {
val list = mutableListOf(1, 2, 3)
list = list + 4
}
After the quick-fix is applied:
fun foo() {
val list = mutableListOf(1, 2, 3)
list += 4
}
- 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.
ReplaceWithOperatorAssignment
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Kotlin, 243.23126-IJ |
Thanks for your feedback!
Was this page helpful?