diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-01-17 23:57:11 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-01-17 23:57:11 +0100 |
commit | 41a85d2814a979cb2c1c31b5a95dd96cd8a23f87 (patch) | |
tree | f41a0c45d4c1f23b76294c00cd9748a717d3f98c /test/transform/resource/after-ecj/DataPlain.java | |
parent | 47037e2830057143d1597b8d6b6725143ea09f0d (diff) | |
download | lombok-41a85d2814a979cb2c1c31b5a95dd96cd8a23f87.tar.gz lombok-41a85d2814a979cb2c1c31b5a95dd96cd8a23f87.tar.bz2 lombok-41a85d2814a979cb2c1c31b5a95dd96cd8a23f87.zip |
Some of the tests weren't succeeding (and haven't for a while now) since fixing the bug where lombok will call equals(SomeSpecificType) instead of equals(Object) from data. This commit rectifies this by updating the tests.
Diffstat (limited to 'test/transform/resource/after-ecj/DataPlain.java')
-rw-r--r-- | test/transform/resource/after-ecj/DataPlain.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/transform/resource/after-ecj/DataPlain.java b/test/transform/resource/after-ecj/DataPlain.java index 4dbac075..0edf164b 100644 --- a/test/transform/resource/after-ecj/DataPlain.java +++ b/test/transform/resource/after-ecj/DataPlain.java @@ -21,11 +21,11 @@ import lombok.Data; if ((! (o instanceof Data1))) return false; final Data1 other = (Data1) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals(other.getName())))) + if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) return false; return true; } @@ -65,11 +65,11 @@ import lombok.Data; if ((! (o instanceof Data2))) return false; final Data2 other = (Data2) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((this.getX() != other.getX())) return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals(other.getName())))) + if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) return false; return true; } @@ -111,7 +111,7 @@ final @Data class Data3 { final Data3 other = (Data3) o; if ((this.getX() != other.getX())) return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals(other.getName())))) + if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) return false; return true; } @@ -140,7 +140,7 @@ final @Data @lombok.EqualsAndHashCode(callSuper = true) class Data4 extends java if ((! (o instanceof Data4))) return false; final Data4 other = (Data4) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; if ((! super.equals(o))) return false; @@ -172,7 +172,7 @@ final @Data @lombok.EqualsAndHashCode(callSuper = true) class Data4 extends java if ((! (o instanceof Data5))) return false; final Data5 other = (Data5) o; - if ((! other.canEqual(this))) + if ((! other.canEqual((java.lang.Object) this))) return false; return true; } |