mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 12:24:44 +00:00
15 lines
206 B
Java
15 lines
206 B
Java
import lombok.experimental.Wither;
|
|
|
|
class WitherDeprecated {
|
|
|
|
@Deprecated
|
|
@Wither int annotation;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
@Wither int javadoc;
|
|
|
|
WitherDeprecated(int annotation, int javadoc) {
|
|
}
|
|
} |