File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -1099,16 +1099,6 @@ export class CliVersionConstraint {
1099
1099
*/
1100
1100
public static CLI_VERSION_WITH_DATABASE_UNBUNDLE = new SemVer ( '2.6.0' ) ;
1101
1101
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
-
1112
1102
constructor ( private readonly cli : CodeQLCliServer ) {
1113
1103
/**/
1114
1104
}
@@ -1145,11 +1135,4 @@ export class CliVersionConstraint {
1145
1135
return this . isVersionAtLeast ( CliVersionConstraint . CLI_VERSION_WITH_DATABASE_UNBUNDLE ) ;
1146
1136
}
1147
1137
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
- }
1155
1138
}
You can’t perform that action at this time.
0 commit comments