mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 12:22:31 +00:00
15 lines
207 B
Java
15 lines
207 B
Java
import lombok.With;
|
|
|
|
class WithMethodMarkedDeprecated {
|
|
|
|
@Deprecated
|
|
@With int annotation;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
@With int javadoc;
|
|
|
|
WithMethodMarkedDeprecated(int annotation, int javadoc) {
|
|
}
|
|
} |