--- old/src/share/classes/com/sun/tools/javah/TypeSignature.java 2011-07-01 11:17:49.000000000 -0700 +++ new/src/share/classes/com/sun/tools/javah/TypeSignature.java 2011-07-01 11:17:49.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -38,7 +38,7 @@ import javax.lang.model.type.TypeVariable; import javax.lang.model.type.TypeVisitor; import javax.lang.model.util.Elements; -import javax.lang.model.util.SimpleTypeVisitor7; +import javax.lang.model.util.SimpleTypeVisitor8; /** * Returns internal type signature. @@ -245,7 +245,7 @@ String qualifiedTypeName(TypeMirror type) { - TypeVisitor v = new SimpleTypeVisitor7() { + TypeVisitor v = new SimpleTypeVisitor8() { @Override public Name visitArray(ArrayType t, Void p) { return t.getComponentType().accept(this, p);