mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 02:25:27 +00:00
[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!
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
public class EqualsAndHashCodeWithGenericsOnInners<A> {
|
||||
@lombok.EqualsAndHashCode class Inner<B> {
|
||||
int x;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user