jdk/src/share/classes/java/lang/Boolean.java
changeset 11275 7cb0861d512f
parent 10602 ab8c1e3b237b
child 14503 0729d9e57ed5
equal deleted inserted replaced
11274:7e7196757acd 11275:7cb0861d512f
    58     /**
    58     /**
    59      * The Class object representing the primitive type boolean.
    59      * The Class object representing the primitive type boolean.
    60      *
    60      *
    61      * @since   JDK1.1
    61      * @since   JDK1.1
    62      */
    62      */
    63     public static final Class<Boolean> TYPE = Class.getPrimitiveClass("boolean");
    63     @SuppressWarnings("unchecked")
       
    64     public static final Class<Boolean> TYPE = (Class<Boolean>) Class.getPrimitiveClass("boolean");
    64 
    65 
    65     /**
    66     /**
    66      * The value of the Boolean.
    67      * The value of the Boolean.
    67      *
    68      *
    68      * @serial
    69      * @serial