From dbc00860f3ab746797aa9c12329da0762c05f72a Mon Sep 17 00:00:00 2001 From: rtrimana Date: Wed, 19 Jun 2019 10:53:11 -0700 Subject: [PATCH] First commit to PLRG Git repo. --- examples/Reflection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Reflection.java b/examples/Reflection.java index 88f41d5..8bead2e 100644 --- a/examples/Reflection.java +++ b/examples/Reflection.java @@ -55,8 +55,8 @@ public class Reflection { } System.out.println();*/ - TypeVariable[] typeParameters = Generic.class.getTypeParameters(); - //TypeVariable[] typeParameters = SampleClass.class.getTypeParameters(); + //TypeVariable[] typeParameters = Generic.class.getTypeParameters(); + TypeVariable[] typeParameters = SampleClass.class.getTypeParameters(); for(TypeVariable typeVar: typeParameters){ System.out.println(typeVar); -- 2.34.1