blob: 551b59bf7599e638b3aa6199bd3e01038952aa6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class WithMethodMarkedDeprecatedAnnOnly {
@Deprecated
int annotation;
WithMethodMarkedDeprecatedAnnOnly(int annotation) {
}
@java.lang.Deprecated
@java.lang.SuppressWarnings("all")
public WithMethodMarkedDeprecatedAnnOnly withAnnotation(final int annotation) {
return this.annotation == annotation ? this : new WithMethodMarkedDeprecatedAnnOnly(annotation);
}
}
|