File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments