File tree Expand file tree Collapse file tree
extensions/ql-vscode/src/common/vscode Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ export abstract class FilePathDiscovery<T extends PathData> extends Discovery {
153153 let pathsUpdated = false ;
154154 for ( const path of this . changedFilePaths ) {
155155 this . changedFilePaths . delete ( path ) ;
156- if ( await this . handledChangedPath ( path ) ) {
156+ if ( await this . handleChangedPath ( path ) ) {
157157 pathsUpdated = true ;
158158 }
159159 }
@@ -163,7 +163,7 @@ export abstract class FilePathDiscovery<T extends PathData> extends Discovery {
163163 }
164164 }
165165
166- private async handledChangedPath ( path : string ) : Promise < boolean > {
166+ private async handleChangedPath ( path : string ) : Promise < boolean > {
167167 try {
168168 // If the path is not in the workspace then we don't want to be
169169 // tracking or displaying it, so treat it as if it doesn't exist.
You can’t perform that action at this time.
0 commit comments