Fixing the method getGenericParameterTypes to recognize the GenericArrayTypeImpl...
[jpf-core.git] / src / classes / sun / reflect / generics / reflectiveObjects / GenericArrayTypeImpl.java
index d9ba1788fc791268b940e7adfadf05e8ff6d0f49..1d8063b753cae5740af22f7f6ba9b584768a2ab6 100644 (file)
@@ -25,25 +25,10 @@ public class GenericArrayTypeImpl
         genericComponentType = ct;
     }
 
-    /**
-     * Factory method.
-     * @param ct - the desired component type of the generic array type
-     * being created
-     * @return a generic array type with the desired component type
-     */
     public static GenericArrayTypeImpl make(Type ct) {
         return new GenericArrayTypeImpl(ct);
     }
 
-
-    /**
-     * Returns  a <tt>Type</tt> object representing the component type
-     * of this array.
-     *
-     * @return  a <tt>Type</tt> object representing the component type
-     *     of this array
-     * @since 1.5
-     */
     public Type getGenericComponentType() {
         return genericComponentType; // return cached component type
     }