Array property in data class
Reports properties with an Array
type in a data
class without overridden equals()
or hashCode()
.
Array parameters are compared by reference equality, which is likely an unexpected behavior. It is strongly recommended to override equals()
and hashCode()
in such cases.
Example:
data class Text(val lines: Array<String>)
The quick-fix generates missing equals()
and hashCode()
implementations:
data class Text(val lines: Array<String>) {
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as Text
if (!lines.contentEquals(other.lines)) return false
return true
}
override fun hashCode(): Int {
return lines.contentHashCode()
}
}
Locating this inspection
- 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.
ArrayInDataClass- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Kotlin, 242.22892-IJ |
Last modified: 11 September 2024