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
177 B
Java
8 lines
177 B
Java
class GetterOnMethod {
|
|
@lombok.Getter(onMethod=@__(@Deprecated)) int i;
|
|
@lombok.Getter(onMethod=@__({@java.lang.Deprecated, @Test})) int j, k;
|
|
|
|
public @interface Test {
|
|
}
|
|
}
|