We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59dcea6 commit 60fd868Copy full SHA for 60fd868
1 file changed
extensions/ql-vscode/src/debugger/debugger-factory.ts
@@ -34,8 +34,6 @@ export class QLDebugAdapterDescriptorFactory
34
DebugConfigurationProviderTriggerKind.Dynamic,
35
),
36
);
37
-
38
- this.push(debug.onDidStartDebugSession(this.handleOnDidStartDebugSession));
39
}
40
41
public createDebugAdapterDescriptor(
@@ -49,9 +47,4 @@ export class QLDebugAdapterDescriptorFactory
49
47
new QLDebugSession(this.queryStorageDir, this.queryRunner),
50
48
51
52
53
- private handleOnDidStartDebugSession(session: DebugSession): void {
54
- const config = session.configuration;
55
- void config;
56
- }
57
0 commit comments