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-delombok/DataIgnore.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-delombok/DataIgnore.java')
-rw-r--r-- | test/transform/resource/after-delombok/DataIgnore.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/after-delombok/DataIgnore.java b/test/transform/resource/after-delombok/DataIgnore.java index 9f2a7d79..b74b6a8f 100644 --- a/test/transform/resource/after-delombok/DataIgnore.java +++ b/test/transform/resource/after-delombok/DataIgnore.java @@ -16,7 +16,7 @@ class DataIgnore { if (o == this) return true; if (!(o instanceof DataIgnore)) return false; final DataIgnore other = (DataIgnore)o; - if (!other.canEqual(this)) return false; + if (!other.canEqual((java.lang.Object)this)) return false; if (this.getX() != other.getX()) return false; return true; } |