[Fixes #965] Adds a config key to automatically determine the behaviour of equals and hashCode generation when

This commit is contained in:
Reinier Zwitserloot
2015-11-23 03:12:50 +01:00
parent b8ced807a7
commit 728ae6421d
12 changed files with 301 additions and 6 deletions
@@ -0,0 +1,9 @@
//CONF: lombok.equalsAndHashCode.callSuper = skip
@lombok.EqualsAndHashCode
class EqualsAndHashCodeConfigKeys1Parent {
}
@lombok.EqualsAndHashCode
class EqualsAndHashCodeConfigKeys1 extends EqualsAndHashCodeConfigKeys1Parent {
int x;
}