mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 14:22:11 +00:00
9 lines
234 B
Java
9 lines
234 B
Java
class SetterOnParamAndOnMethod {
|
|
@lombok.Setter() int i;
|
|
public @Deprecated @java.lang.SuppressWarnings("all") void setI(final @SuppressWarnings("all") int i) {
|
|
this.i = i;
|
|
}
|
|
SetterOnParamAndOnMethod() {
|
|
super();
|
|
}
|
|
} |