mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-31 18:19:55 +00:00
850c3eaf07
And as expected the tests shows that @Synchronized and @SneakyThrows are currently broken for eclipse but not for ecj.
14 lines
285 B
Java
14 lines
285 B
Java
import lombok.Getter;
|
|
class GetterPlain {
|
|
@lombok.Getter int i;
|
|
@Getter int foo;
|
|
public @java.lang.SuppressWarnings("all") int getI() {
|
|
return this.i;
|
|
}
|
|
public @java.lang.SuppressWarnings("all") int getFoo() {
|
|
return this.foo;
|
|
}
|
|
GetterPlain() {
|
|
super();
|
|
}
|
|
} |