diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-03-20 01:17:35 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-03-20 01:17:35 +0100 |
commit | c08559b0168e41de14e0640262e4bcbec8de22db (patch) | |
tree | e8cb885704c78116530d8c68b536fc4b8b33cce0 /test/transform/resource/after-ecj/EqualsAndHashCodeWithGenericsOnInners.java | |
parent | ae611e168718bc226d5ca530484b9a92c2836b30 (diff) | |
download | lombok-c08559b0168e41de14e0640262e4bcbec8de22db.tar.gz lombok-c08559b0168e41de14e0640262e4bcbec8de22db.tar.bz2 lombok-c08559b0168e41de14e0640262e4bcbec8de22db.zip |
[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!
Diffstat (limited to 'test/transform/resource/after-ecj/EqualsAndHashCodeWithGenericsOnInners.java')
-rw-r--r-- | test/transform/resource/after-ecj/EqualsAndHashCodeWithGenericsOnInners.java | 32 |
1 files changed, 32 insertions, 0 deletions
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<A> { + @lombok.EqualsAndHashCode class Inner<B> { + 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(); + } +} |