Java: don't add instance check when generating equals() (IDEA-357686)

GitOrigin-RevId: 21a0555c2fe6be705fe4d510c8d8d08238af4585
This commit is contained in:
Bas Leijdekkers
2024-09-25 09:48:53 +02:00
committed by intellij-monorepo-bot
parent 9ad64512e3
commit 7fbe663b37
35 changed files with 0 additions and 35 deletions

View File

@@ -15,7 +15,6 @@ class A extends I {
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
final A a = (A) o;