Skip to content

Commit 67bf116

Browse files
committed
GH-475 bytecode is null, use scanMethod() instead
1 parent d6f2a10 commit 67bf116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

visualvm/libs.profiler/lib.profiler/src/org/graalvm/visualvm/lib/jfluid/instrumentation/RecursiveMethodInstrumentor2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ private boolean checkAndScanMethod(DynamicClassInfo clazz, String methodName, St
406406
//if (!lookupInSuperIfNotFoundInThis && !checkSubclasses) System.out.println("Gonna scan potentially reachable " + className + "." + methodName + methodSignature);
407407
scanBytecode(clazz, bytecode);
408408
} else if (constructorNotInstrumented) {
409-
scanBytecode(clazz, bytecode);
409+
scanMethod(clazz, idx);
410410
}
411411
}
412412

0 commit comments

Comments
 (0)