mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-31 20:17:43 +00:00
850c3eaf07
And as expected the tests shows that @Synchronized and @SneakyThrows are currently broken for eclipse but not for ecj.
14 lines
307 B
Java
14 lines
307 B
Java
import lombok.Setter;
|
|
class SetterPlain {
|
|
@lombok.Setter int i;
|
|
@Setter int foo;
|
|
public @java.lang.SuppressWarnings("all") void setI(final int i) {
|
|
this.i = i;
|
|
}
|
|
public @java.lang.SuppressWarnings("all") void setFoo(final int foo) {
|
|
this.foo = foo;
|
|
}
|
|
SetterPlain() {
|
|
super();
|
|
}
|
|
} |