aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/DataWithGetterNone.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-01-17 23:57:11 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-01-17 23:57:11 +0100
commit41a85d2814a979cb2c1c31b5a95dd96cd8a23f87 (patch)
treef41a0c45d4c1f23b76294c00cd9748a717d3f98c /test/transform/resource/after-ecj/DataWithGetterNone.java
parent47037e2830057143d1597b8d6b6725143ea09f0d (diff)
downloadlombok-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/DataWithGetterNone.java')
-rw-r--r--test/transform/resource/after-ecj/DataWithGetterNone.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/transform/resource/after-ecj/DataWithGetterNone.java b/test/transform/resource/after-ecj/DataWithGetterNone.java
index 0172f4f3..2380865b 100644
--- a/test/transform/resource/after-ecj/DataWithGetterNone.java
+++ b/test/transform/resource/after-ecj/DataWithGetterNone.java
@@ -18,13 +18,13 @@
if ((! (o instanceof DataWithGetterNone)))
return false;
final DataWithGetterNone other = (DataWithGetterNone) o;
- if ((! other.canEqual(this)))
+ if ((! other.canEqual((java.lang.Object) this)))
return false;
if ((this.x != other.x))
return false;
if ((this.y != other.y))
return false;
- if (((this.z == null) ? (other.z != null) : (! this.z.equals(other.z))))
+ if (((this.z == null) ? (other.z != null) : (! this.z.equals((java.lang.Object) other.z))))
return false;
return true;
}