Java: use deepEquals() / deepHashCode() for multi-dimensional arrays (IDEA-199543)

when generating equals() and hashCode() methods using the "java.util.Objects.equals() and hash() (java 7+)" template

GitOrigin-RevId: a863b875fa482542bbb9b2efc5e61cfa2bfb787d
This commit is contained in:
Bas Leijdekkers
2023-11-19 22:07:30 +01:00
committed by intellij-monorepo-bot
parent f8773787b2
commit caab7e4bf9
9 changed files with 79 additions and 104 deletions

View File

@@ -0,0 +1,3 @@
class X {
private String[][] s = null;
}