diff -r 593a59e40bdb -r 9a7c998bf2fc test/tools/javac/processing/model/type/NoTypes.java --- a/test/tools/javac/processing/model/type/NoTypes.java Fri May 28 12:41:48 2010 -0700 +++ b/test/tools/javac/processing/model/type/NoTypes.java Wed Jun 02 19:08:47 2010 -0700 @@ -89,7 +89,7 @@ verifyKind(NONE, types.getNoType(NONE)); // The return type of a constructor or void method is VOID. - class Scanner extends ElementScanner6 { + class Scanner extends ElementScanner7 { @Override public Void visitExecutable(ExecutableElement e, Void p) { verifyKind(VOID, e.getReturnType()); @@ -104,10 +104,10 @@ /** * Verify that a NoType instance is of a particular kind, - * and that TypeKindVisitor6 properly dispatches on it. + * and that TypeKindVisitor7 properly dispatches on it. */ private void verifyKind(TypeKind kind, TypeMirror type) { - class Vis extends TypeKindVisitor6 { + class Vis extends TypeKindVisitor7 { @Override public TypeKind visitNoTypeAsVoid(NoType t, Void p) { return VOID;