jdk/src/java.base/share/classes/sun/reflect/generics/tree/IntSignature.java
changeset 27489 cf53b2c02ebb
parent 25859 3317bb8137f4
equal deleted inserted replaced
27488:0422f7235c7a 27489:cf53b2c02ebb
    27 
    27 
    28 import sun.reflect.generics.visitor.TypeTreeVisitor;
    28 import sun.reflect.generics.visitor.TypeTreeVisitor;
    29 
    29 
    30 /** AST that represents the type int. */
    30 /** AST that represents the type int. */
    31 public class IntSignature implements BaseType {
    31 public class IntSignature implements BaseType {
    32     private static IntSignature singleton = new IntSignature();
    32     private static final IntSignature singleton = new IntSignature();
    33 
    33 
    34     private IntSignature(){}
    34     private IntSignature(){}
    35 
    35 
    36     public static IntSignature make() {return singleton;}
    36     public static IntSignature make() {return singleton;}
    37 
    37