File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
extensions/ql-vscode/src/codeql-cli Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -326,11 +326,11 @@ class ExtensionSpecificDistributionManager {
326
326
327
327
this . distributionState = {
328
328
folderIndex : this . extensionContext . globalState . get (
329
- ExtensionSpecificDistributionManager . _currentDistributionFolderIndexStateKey ,
329
+ "distributionFolderIndex" ,
330
330
0 ,
331
331
) ,
332
332
release : ( this . extensionContext . globalState . get (
333
- ExtensionSpecificDistributionManager . _installedReleaseStateKey ,
333
+ "distributionRelease" ,
334
334
) ?? null ) as Release | null ,
335
335
} ;
336
336
@@ -710,9 +710,6 @@ class ExtensionSpecificDistributionManager {
710
710
}
711
711
712
712
private static readonly _currentDistributionFolderBaseName = "distribution" ;
713
- private static readonly _currentDistributionFolderIndexStateKey =
714
- "distributionFolderIndex" ;
715
- private static readonly _installedReleaseStateKey = "distributionRelease" ;
716
713
private static readonly _codeQlExtractedFolderName = "codeql" ;
717
714
private static readonly _distributionStateFilename = "distribution.json" ;
718
715
}
You can’t perform that action at this time.
0 commit comments