We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e74028 commit 9374213Copy full SHA for 9374213
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/hub/SunReflectTypeSubstitutions.java
@@ -29,8 +29,9 @@
29
import com.oracle.svm.core.annotate.Alias;
30
import com.oracle.svm.core.annotate.Substitute;
31
import com.oracle.svm.core.annotate.TargetClass;
32
+import com.oracle.svm.core.jdk.JDK21OrEarlier;
33
-@TargetClass(sun.reflect.generics.reflectiveObjects.TypeVariableImpl.class)
34
+@TargetClass(value = sun.reflect.generics.reflectiveObjects.TypeVariableImpl.class, onlyWith = JDK21OrEarlier.class)
35
final class Target_sun_reflect_generics_reflectiveObjects_TypeVariableImpl {
36
37
@Alias GenericDeclaration genericDeclaration;
0 commit comments