blob: efd1af43d84ea2d1c68e774f4b887bd77b483f53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import lombok.experimental.Wither;
class WitherDeprecated {
@Deprecated
@Wither int annotation;
/**
* @deprecated
*/
@Wither int javadoc;
WitherDeprecated(int annotation, int javadoc) {
}
}
|