From 41a85d2814a979cb2c1c31b5a95dd96cd8a23f87 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 17 Jan 2011 23:57:11 +0100 Subject: 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. --- test/transform/resource/after-delombok/DataIgnore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/transform/resource/after-delombok/DataIgnore.java') 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; } -- cgit