--- old/test/tools/javac/processing/model/type/NoTypes.java 2010-06-02 18:11:14.000000000 -0700 +++ new/test/tools/javac/processing/model/type/NoTypes.java 2010-06-02 18:11:14.000000000 -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;