A clean implementation for getTypeParameters' native method version.
[jpf-core.git] / src / classes / sun / reflect / generics / reflectiveObjects / TypeVariableImpl.java
index f845539b3c4ecf725fa90a2bdeeb58c79831b1e8..50392ca4793b2b3adba13cdd5c3d327b0e80898a 100644 (file)
@@ -25,12 +25,9 @@ import sun.reflect.generics.tree.FieldTypeSignature;
  */
 public class TypeVariableImpl<D extends GenericDeclaration>
     extends LazyReflectiveObjectGenerator implements TypeVariable<D> {
-//public class TypeVariableImpl {
+
     D genericDeclaration;
     private String name;
-    private Type[] bounds;
-    private FieldTypeSignature[] boundASTs;
-    //private static final Annotation[] EMPTY_ANNOTATION_ARRAY = new Annotation[0];
 
     // constructor is private to enforce access through static factory
     private TypeVariableImpl(D decl, String n, FieldTypeSignature[] bs,
@@ -38,7 +35,6 @@ public class TypeVariableImpl<D extends GenericDeclaration>
         super(f);
         genericDeclaration = decl;
         name = n;
-        boundASTs = bs;
     }
 
     // Accessors