langtools/test/tools/javac/api/6468404/T6468404.java
changeset 4935 ff8adaa7bb8e
parent 10 06bc494ca11e
child 5520 86e4b9a9da40
--- a/langtools/test/tools/javac/api/6468404/T6468404.java	Mon Feb 15 18:20:57 2010 -0800
+++ b/langtools/test/tools/javac/api/6468404/T6468404.java	Mon Feb 15 20:06:11 2010 -0800
@@ -105,7 +105,6 @@
 }
 
 @SupportedAnnotationTypes("*")
-@SupportedSourceVersion(SourceVersion.RELEASE_6)
 class P extends AbstractProcessor {
     boolean ran = false;
 
@@ -145,4 +144,9 @@
         }
         return true;
     }
+
+    @Override
+    public SourceVersion getSupportedSourceVersion() {
+        return SourceVersion.latest();
+    }
 }