mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
Updated the after-delombok images to the latest state.
This commit is contained in:
@@ -14,10 +14,9 @@ public class EqualsAndHashCodeExample {
|
||||
|
||||
@Override public boolean equals(Object o) {
|
||||
if (o == this) return true;
|
||||
if (o == null) return false;
|
||||
if (!(o instanceof EqualsAndHashCodeExample)) return false;
|
||||
EqualsAndHashCodeExample other = (EqualsAndHashCodeExample) o;
|
||||
if (!other.canEqual(this)) return false;
|
||||
if (!other.canEqual((Object)this)) return false;
|
||||
if (this.getName() == null ? other.getName() != null : !this.getName().equals(other.getName())) return false;
|
||||
if (Double.compare(this.score, other.score) != 0) return false;
|
||||
if (!Arrays.deepEquals(this.tags, other.tags)) return false;
|
||||
@@ -48,10 +47,9 @@ public class EqualsAndHashCodeExample {
|
||||
|
||||
@Override public boolean equals(Object o) {
|
||||
if (o == this) return true;
|
||||
if (o == null) return false;
|
||||
if (!(o instanceof Square)) return false;
|
||||
Square other = (Square) o;
|
||||
if (!other.canEqual(this)) return false;
|
||||
if (!other.canEqual((Object)this)) return false;
|
||||
if (!super.equals(o)) return false;
|
||||
if (this.width != other.width) return false;
|
||||
if (this.height != other.height) return false;
|
||||
|
||||
Reference in New Issue
Block a user