Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6c73dedd0d1d269c6caa85058dd8f033a535cdd7 (plain) (blame)
1
2
3
4
5
6
package java.lang;
import java.lang.annotation.*;
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface Deprecated {
}

Back to the top