diff -r af18e3956985 -r fe17a9dbef03 test/tools/javac/T6411379.java --- a/test/tools/javac/T6411379.java Mon Feb 15 18:20:57 2010 -0800 +++ b/test/tools/javac/T6411379.java Mon Feb 15 20:06:11 2010 -0800 @@ -37,7 +37,6 @@ import com.sun.source.util.*; @SupportedAnnotationTypes("*") -@SupportedSourceVersion(SourceVersion.RELEASE_6) public class T6411379 extends AbstractProcessor { public boolean process(Set annoElems, @@ -58,6 +57,11 @@ return true; } + @Override + public SourceVersion getSupportedSourceVersion() { + return SourceVersion.latest(); + } + public void checkNull(Object o) { if (o != null) throw new AssertionError("expected null");