mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-180314 ISE at com.intellij.debugger.engine.DebugProcessImpl.getVirtualMachineProxy - fix for IDEA-CR-26490
This commit is contained in:
@@ -376,9 +376,9 @@ public class DebugProcessEvents extends DebugProcessImpl {
|
||||
});
|
||||
}
|
||||
|
||||
private void processVMDeathEvent(SuspendContextImpl suspendContext, Event event) {
|
||||
private void processVMDeathEvent(SuspendContextImpl suspendContext, @Nullable Event event) {
|
||||
// do not destroy another process on reattach
|
||||
if (isAttached() && getVirtualMachineProxy().getVirtualMachine() == event.virtualMachine()) {
|
||||
if (isAttached() && (event == null || getVirtualMachineProxy().getVirtualMachine() == event.virtualMachine())) {
|
||||
try {
|
||||
preprocessEvent(suspendContext, null);
|
||||
cancelRunToCursorBreakpoint();
|
||||
|
||||
Reference in New Issue
Block a user