8000 We should not send error message after termination to vscode because … by andxu · Pull Request #75 · microsoft/java-debug · GitHub
[go: up one dir, main page]

Skip to content
Merged
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 @@ -68,8 +68,7 @@ public Messages.Response dispatchRequest(Messages.Request request) {

try {
if (debugContext.isVmTerminated()) {
AdapterUtils.setErrorResponse(response, ErrorCode.VM_TERMINATED,
String.format("Target VM is already terminated.", request.command));
// the operation is meaningless
return response;
}
List<IDebugRequestHandler> handlers = requestHandlers.get(command);
Expand Down
0