mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
11 lines
138 B
Java
11 lines
138 B
Java
import lombok.Getter;
|
|
class GetterDeprecated {
|
|
|
|
@Deprecated
|
|
@Getter int annotation;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
@Getter int javadoc;
|
|
} |