File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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." ,
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments