Array in data class inspection: warning on array properties in data classes #KT-10299 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-03-25 18:09:25 +03:00
parent 047828bd6d
commit 20bac6178c
7 changed files with 123 additions and 0 deletions
@@ -0,0 +1,6 @@
<html>
<body>
This inspection reports array properties in a data class without overridden <code>equals()</code> or <code>hashCode()</code> inside.
Due to default <code>equals()</code> behaviour for arrays in JVM, it's strongly recommended to override <code>equals()</code> and <code>hashCode()</code> in such cases.
</body>
</html>