File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
extensions/ql-vscode/src/variant-analysis Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -385,28 +385,28 @@ export class VariantAnalysisManager
385385 throw e ;
386386 }
387387
388- const processedVariantAnalysis = mapVariantAnalysis (
388+ const mappedVariantAnalysis = mapVariantAnalysis (
389389 variantAnalysisSubmission ,
390390 variantAnalysisResponse ,
391391 ) ;
392392
393- await this . onVariantAnalysisSubmitted ( processedVariantAnalysis ) ;
393+ await this . onVariantAnalysisSubmitted ( mappedVariantAnalysis ) ;
394394
395395 void showAndLogInformationMessage (
396396 this . app . logger ,
397- `Variant analysis ${ processedVariantAnalysis . query . name } submitted for processing` ,
397+ `Variant analysis ${ mappedVariantAnalysis . query . name } submitted for processing` ,
398398 ) ;
399399
400400 void this . app . commands . execute (
401401 "codeQL.openVariantAnalysisView" ,
402- processedVariantAnalysis . id ,
402+ mappedVariantAnalysis . id ,
403403 ) ;
404404 void this . app . commands . execute (
405405 "codeQL.monitorNewVariantAnalysis" ,
406- processedVariantAnalysis ,
406+ mappedVariantAnalysis ,
407407 ) ;
408408
409- return processedVariantAnalysis . id ;
409+ return mappedVariantAnalysis . id ;
410410 }
411411
412412 public async rehydrateVariantAnalysis ( variantAnalysis : VariantAnalysis ) {
You can’t perform that action at this time.
0 commit comments