We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ae605 commit 4000f82Copy full SHA for 4000f82
server/src/engine/flix.ts
@@ -117,7 +117,7 @@ export async function start(input: StartEngineInput) {
117
return
118
}
119
120
- if (majorVersion! < 11) {
+ if (majorVersion! < 21) {
121
sendNotification(jobs.Request.internalError, {
122
message: USER_MESSAGE.JAVA_WRONG_VERSION(versionString),
123
actions: [],
server/src/util/userMessages.ts
@@ -29,7 +29,7 @@ export class USER_MESSAGE {
29
30
31
static JAVA_WRONG_VERSION(foundVersion: string) {
32
- return `Flix requires Java 11 or later. Found "${foundVersion}".`
+ return `Flix requires Java 21 or later. Found "${foundVersion}".`
33
34
35
static RESPONSE_TIMEOUT(timeoutTime: number) {
0 commit comments