< prev index next >

src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/LoadProc.java

Print this page

        

*** 48,66 **** import javax.lang.model.type.TypeMirror; import javax.lang.model.util.Elements; import javax.tools.Diagnostic; ! import static javax.lang.model.SourceVersion.RELEASE_10; /** * Annotation processor for the Deprecation Scanner tool. * Examines APIs for deprecated elements and records information * */ @SupportedAnnotationTypes("java.lang.Deprecated") ! @SupportedSourceVersion(RELEASE_10) public class LoadProc extends AbstractProcessor { Elements elements; Messager messager; final List<DeprData> deprList = new ArrayList<>(); --- 48,66 ---- import javax.lang.model.type.TypeMirror; import javax.lang.model.util.Elements; import javax.tools.Diagnostic; ! import static javax.lang.model.SourceVersion.RELEASE_11; /** * Annotation processor for the Deprecation Scanner tool. * Examines APIs for deprecated elements and records information * */ @SupportedAnnotationTypes("java.lang.Deprecated") ! @SupportedSourceVersion(RELEASE_11) public class LoadProc extends AbstractProcessor { Elements elements; Messager messager; final List<DeprData> deprList = new ArrayList<>();
< prev index next >