Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import com.intellij.java.debugger.localize.JavaDebuggerLocalize;
import com.intellij.java.debugger.requests.Requestor;
import com.intellij.java.execution.configurations.RemoteConnection;
import consulo.application.Application;
import consulo.component.ProcessCanceledException;
import consulo.execution.debug.XDebugSession;
import consulo.execution.debug.breakpoint.XBreakpoint;
Expand Down Expand Up @@ -74,13 +75,12 @@ public DebugProcessEvents(Project project) {
}

@Override
@RequiredUIAccess
protected void commitVM(VirtualMachine vm) {
super.commitVM(vm);
if (vm != null) {
vmAttached();
myEventThread = new DebuggerEventThread();
UIAccess.assertIsUIThread();
Application.get().executeOnPooledThread(myEventThread);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ public static NodeRenderer getDefaultRenderer(Type type) {

private static final String ourTrace = Platform.current().jvm().getRuntimeProperty("idea.debugger.trace");

@RequiredUIAccess
@SuppressWarnings({"HardCodedStringLiteral"})
protected void commitVM(VirtualMachine vm) {
if (!isInInitialState()) {
Expand Down Expand Up @@ -643,7 +642,6 @@ static Connector findConnector(String connectorName) throws ExecutionException {
return null;
}

@RequiredUIAccess
private void checkVirtualMachineVersion(VirtualMachine vm) {
String version = vm.version();
if ("1.4.0".equals(version)) {
Expand Down
Loading