Remove unused code

This commit is contained in:
Dave Bartolomeo
2023-04-14 12:56:25 -04:00
parent 59dcea6fea
commit 60fd868579

View File

@@ -34,8 +34,6 @@ export class QLDebugAdapterDescriptorFactory
DebugConfigurationProviderTriggerKind.Dynamic,
),
);
this.push(debug.onDidStartDebugSession(this.handleOnDidStartDebugSession));
}
public createDebugAdapterDescriptor(
@@ -49,9 +47,4 @@ export class QLDebugAdapterDescriptorFactory
new QLDebugSession(this.queryStorageDir, this.queryRunner),
);
}
private handleOnDidStartDebugSession(session: DebugSession): void {
const config = session.configuration;
void config;
}
}