mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
EA-126095 - NPE: CaptureSettingsProvider.lambda$null$
This commit is contained in:
@@ -57,7 +57,12 @@ public class CaptureSettingsProvider {
|
||||
else {
|
||||
return;
|
||||
}
|
||||
String className = JVMNameUtil.getNonAnonymousClassName(method.getContainingClass()).replaceAll("\\.", "/");
|
||||
String classVMName = JVMNameUtil.getClassVMName(method.getContainingClass());
|
||||
if (classVMName == null) {
|
||||
LOG.warn("Unable to find VM class name for annotated method: " + method.getName());
|
||||
return;
|
||||
}
|
||||
String className = classVMName.replaceAll("\\.", "/");
|
||||
String methodName = JVMNameUtil.getJVMMethodName(method);
|
||||
String methodDesc = ANY;
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user