Skip to content

Commit 30b9d7e

Browse files
author
Dave Bartolomeo
committed
Merge branch 'dbartol/debug-adapter' of https://github.com/github/vscode-codeql into dbartol/debug-adapter
2 parents 6efdd11 + d3b118b commit 30b9d7e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/ql-vscode/src/debugger/debug-configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class QLDebugConfigurationProvider
6767
debugConfiguration: DebugConfiguration,
6868
_token?: CancellationToken,
6969
): Promise<DebugConfiguration | null> {
70-
const qlConfiguration = <QLDebugConfiguration>debugConfiguration;
70+
const qlConfiguration = debugConfiguration as QLDebugConfiguration;
7171
if (qlConfiguration.query === undefined) {
7272
await showAndLogErrorMessage(
7373
"No query was specified in the debug configuration.",

extensions/ql-vscode/src/local-databases.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ export class DatabaseManager extends DisposableObject {
636636
* Adds a {@link DatabaseItem} to the list of open databases, if that database is not already on
637637
* the list.
638638
*
639-
* Typically, the item will have been created by {@link createOrOpenDatabaseItem}.
639+
* Typically, the item will have been created by {@link createOrOpenDatabaseItem} or {@link openDatabase}.
640640
*/
641641
public async addExistingDatabaseItem(
642642
databaseItem: DatabaseItem,

0 commit comments

Comments
 (0)