File tree Expand file tree Collapse file tree 2 files changed +0
-17
lines changed
Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Original file line number Diff line number Diff line change 314314 "command" : " codeQL.exportVariantAnalysisResults" ,
315315 "title" : " CodeQL: Export Variant Analysis Results"
316316 },
317- {
318- "command" : " codeQL.mockVariantAnalysisView" ,
319- "title" : " CodeQL: Open Variant Analysis Mock View"
320- },
321317 {
322318 "command" : " codeQL.runQueries" ,
323319 "title" : " CodeQL: Run Queries in Selected Files"
898894 "command" : " codeQL.exportVariantAnalysisResults" ,
899895 "when" : " config.codeQL.canary"
900896 },
901- {
902- "command" : " codeQL.mockVariantAnalysisView" ,
903- "when" : " config.codeQL.canary && config.codeQL.variantAnalysis.liveResults"
904- },
905897 {
906898 "command" : " codeQL.runQueries" ,
907899 "when" : " false"
Original file line number Diff line number Diff line change @@ -947,15 +947,6 @@ async function activateWithInstalledDistribution(
947947 } )
948948 ) ;
949949
950- ctx . subscriptions . push (
951- commandRunner ( 'codeQL.mockVariantAnalysisView' , async ( ) => {
952- // Generate a random variant analysis ID for testing
953- const variantAnalysisId : number = Math . floor ( Math . random ( ) * 1000000 ) ;
954-
955- await variantAnalysisManager . showView ( variantAnalysisId ) ;
956- } )
957- ) ;
958-
959950 ctx . subscriptions . push (
960951 commandRunner ( 'codeQL.loadVariantAnalysisRepoResults' , async ( variantAnalysisId : number , repositoryFullName : string ) => {
961952 await variantAnalysisManager . loadResults ( variantAnalysisId , repositoryFullName ) ;
You can’t perform that action at this time.
0 commit comments