mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 18:23:24 +00:00
95cf815285
Also made dollars and Xes legal in addition to underscores, in case double underscore disappears later too.
8 lines
204 B
Java
8 lines
204 B
Java
class SetterOnMethodOnParam {
|
|
@lombok.Setter(onMethod=@__(@Deprecated)) int i;
|
|
@lombok.Setter(onMethod=@__({@java.lang.Deprecated, @Test}), onParam=@__(@Test)) int j, k;
|
|
|
|
public @interface Test {
|
|
}
|
|
}
|