From c08559b0168e41de14e0640262e4bcbec8de22db Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 20 Mar 2018 01:17:35 +0100 Subject: [issue #1615] fixes a bug where equals and hashcode would mess up if both the outer and the inner class have generics, the inner is non-static, and you generate equals/hashcode on the inner. Note that in general this is just broken; do not put non-static inner classes in generics-carrying classes in the first place! --- .../EqualsAndHashCodeWithGenericsOnInners.java | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 test/transform/resource/after-ecj/EqualsAndHashCodeWithGenericsOnInners.java (limited to 'test/transform/resource/after-ecj/EqualsAndHashCodeWithGenericsOnInners.java') diff --git a/test/transform/resource/after-ecj/EqualsAndHashCodeWithGenericsOnInners.java b/test/transform/resource/after-ecj/EqualsAndHashCodeWithGenericsOnInners.java new file mode 100644 index 00000000..164d0f15 --- /dev/null +++ b/test/transform/resource/after-ecj/EqualsAndHashCodeWithGenericsOnInners.java @@ -0,0 +1,32 @@ +public class EqualsAndHashCodeWithGenericsOnInners { + @lombok.EqualsAndHashCode class Inner { + int x; + Inner() { + super(); + } + public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { + if ((o == this)) + return true; + if ((! (o instanceof EqualsAndHashCodeWithGenericsOnInners.Inner))) + return false; + final EqualsAndHashCodeWithGenericsOnInners.Inner other = (EqualsAndHashCodeWithGenericsOnInners.Inner) o; + if ((! other.canEqual((java.lang.Object) this))) + return false; + if ((this.x != other.x)) + return false; + return true; + } + protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) { + return (other instanceof EqualsAndHashCodeWithGenericsOnInners.Inner); + } + public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { + final int PRIME = 59; + int result = 1; + result = ((result * PRIME) + this.x); + return result; + } + } + public EqualsAndHashCodeWithGenericsOnInners() { + super(); + } +} -- cgit