Issue 366: don't call the getter twice, fixed for javac.

This commit is contained in:
Roel Spilker
2012-04-29 22:24:59 +02:00
parent d8e933223f
commit 5a13db5dc9
10 changed files with 170 additions and 93 deletions
@@ -4,11 +4,15 @@ class EqualsAndHashCode {
boolean[] y;
Object[] z;
String a;
String b;
}
@lombok.EqualsAndHashCode
final class EqualsAndHashCode2 {
int x;
long y;
float f;
double d;
}
@lombok.EqualsAndHashCode(callSuper=false)