src/share/classes/com/sun/tools/javah/TypeSignature.java

changeset 1054
111bbf1ad913
parent 798
4868a36f6fd8
child 2525
2eb010b6cb22
     1.1 --- a/src/share/classes/com/sun/tools/javah/TypeSignature.java	Fri Jul 01 14:28:19 2011 -0700
     1.2 +++ b/src/share/classes/com/sun/tools/javah/TypeSignature.java	Tue Jul 05 16:37:24 2011 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -38,7 +38,7 @@
    1.11  import javax.lang.model.type.TypeVariable;
    1.12  import javax.lang.model.type.TypeVisitor;
    1.13  import javax.lang.model.util.Elements;
    1.14 -import javax.lang.model.util.SimpleTypeVisitor7;
    1.15 +import javax.lang.model.util.SimpleTypeVisitor8;
    1.16  
    1.17  /**
    1.18   * Returns internal type signature.
    1.19 @@ -245,7 +245,7 @@
    1.20  
    1.21  
    1.22      String qualifiedTypeName(TypeMirror type) {
    1.23 -        TypeVisitor<Name, Void> v = new SimpleTypeVisitor7<Name, Void>() {
    1.24 +        TypeVisitor<Name, Void> v = new SimpleTypeVisitor8<Name, Void>() {
    1.25              @Override
    1.26              public Name visitArray(ArrayType t, Void p) {
    1.27                  return t.getComponentType().accept(this, p);

mercurial