< prev index next >

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

Print this page

        

@@ -48,19 +48,19 @@
 import javax.lang.model.type.TypeMirror;
 import javax.lang.model.util.Elements;
 
 import javax.tools.Diagnostic;
 
-import static javax.lang.model.SourceVersion.RELEASE_9;
+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_9)
+@SupportedSourceVersion(RELEASE_10)
 public class LoadProc extends AbstractProcessor {
     Elements elements;
     Messager messager;
     final List<DeprData> deprList = new ArrayList<>();
 
< prev index next >