Skip to content

Commit c74caad

Browse files
committed
Revert "[lldb-dap] Add missing key for capabilities event. (llvm#142751)"
This reverts commit 159de36.
1 parent 4633296 commit c74caad

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lldb/tools/lldb-dap/EventHelper.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,7 @@ void SendTargetBasedCapabilities(DAP &dap) {
4646

4747
protocol::Event event;
4848
event.event = "capabilities";
49-
event.body = llvm::json::Object{
50-
{"capabilities",
51-
llvm::json::Object{{"supportsStepInTargetsRequest", false}}}};
49+
event.body = llvm::json::Object{{"supportsStepInTargetsRequest", false}};
5250
dap.Send(event);
5351
}
5452
// "ProcessEvent": {

0 commit comments

Comments
 (0)