Merge ffb5212b9ca6348e7244e9aec2287820033d5ab4 into b70121d377cb6005eb65f12b098cd5decd905669

This commit is contained in:
duyuanch 2023-09-06 06:09:24 +08:00 committed by GitHub
commit d8486f13be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -730,9 +730,7 @@ public class EqualExample {
EqualExample that = (EqualExample) o;
if (x != that.x) return false;
if (y != that.y) return false;
return z == that.z;
return x == that.x && y == that.y && z == that.z;
}
}
```