Skip to content

Commit 03c6836

Browse files
committed
Issue #146: Fix AttachRequestArguments
Signed-off-by: Jonah Graham <[email protected]>
1 parent f8568f9 commit 03c6836

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

org.eclipse.lsp4j.debug/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
```
77
$ git clone [email protected]:jonahkichwacoders/vscode-debugadapter-node.git
8-
$ git checkout 921a0091c504397e6fc4cae3acce1c73e50152e0 # (on dsp branch)
8+
$ git checkout 4a48e598b114a5afeafbacb824d0786aebc7b164 # (on dsp branch)
99
$ npm install
1010
$ npm run compile
1111
$ # generate java and xtend files to default location

org.eclipse.lsp4j.debug/src/main/java/org/eclipse/lsp4j/debug/services/IDebugProtocolServer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import java.util.Map;
1212
import java.util.concurrent.CompletableFuture;
1313

14-
import org.eclipse.lsp4j.debug.AttachRequestArguments;
1514
import org.eclipse.lsp4j.debug.Capabilities;
1615
import org.eclipse.lsp4j.debug.CompletionsArguments;
1716
import org.eclipse.lsp4j.debug.CompletionsResponse;
@@ -107,7 +106,7 @@ public interface IDebugProtocolServer {
107106
* Attach request; value of command field is 'attach'.
108107
*/
109108
@JsonRequest
110-
CompletableFuture<Void> attach(AttachRequestArguments args);
109+
CompletableFuture<Void> attach(Map<String, Object> args);
111110

112111
/**
113112
* Restart request; value of command field is 'restart'.

0 commit comments

Comments
 (0)