Skip to content

Commit 93e15b4

Browse files
authored
Remove hunks
Accidentally included from a different PR.
1 parent dbc8198 commit 93e15b4

File tree

1 file changed

+0
-17
lines changed
  • extensions/ql-vscode/src

1 file changed

+0
-17
lines changed

extensions/ql-vscode/src/cli.ts

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1099,16 +1099,6 @@ export class CliVersionConstraint {
10991099
*/
11001100
public static CLI_VERSION_WITH_DATABASE_UNBUNDLE = new SemVer('2.6.0');
11011101

1102-
/**
1103-
* CLI version where the `--no-precompile` option for pack creation was introduced.
1104-
*/
1105-
public static CLI_VERSION_WITH_NO_PRECOMPILE = new SemVer('2.7.0');
1106-
1107-
/**
1108-
* CLI version where `pack packlist` layout changed from array to object
1109-
*/
1110-
public static CLI_VERSION_PACK_PACKLIST_LAYOUT_CHANGE = new SemVer('2.7.0');
1111-
11121102
constructor(private readonly cli: CodeQLCliServer) {
11131103
/**/
11141104
}
@@ -1145,11 +1135,4 @@ export class CliVersionConstraint {
11451135
return this.isVersionAtLeast(CliVersionConstraint.CLI_VERSION_WITH_DATABASE_UNBUNDLE);
11461136
}
11471137

1148-
async supportsNoPrecompile() {
1149-
return this.isVersionAtLeast(CliVersionConstraint.CLI_VERSION_WITH_NO_PRECOMPILE);
1150-
}
1151-
1152-
async usesNewPackPacklistLayout() {
1153-
return this.isVersionAtLeast(CliVersionConstraint.CLI_VERSION_PACK_PACKLIST_LAYOUT_CHANGE);
1154-
}
11551138
}

0 commit comments

Comments
 (0)