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 adf733c commit 0723963Copy full SHA for 0723963
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/jfr/JfrTypeRepository.java
@@ -104,6 +104,7 @@ private TypeInfo collectTypeInfo(boolean flushpoint) {
104
105
private void visitClass(TypeInfo typeInfo, Class<?> clazz) {
106
if (clazz != null && addClass(typeInfo, clazz)) {
107
+ visitClassLoader(typeInfo, clazz.getClassLoader());
108
visitPackage(typeInfo, clazz.getPackage(), clazz.getModule());
109
visitClass(typeInfo, clazz.getSuperclass());
110
}
0 commit comments