Skip to content

Commit

Permalink
Merge pull request #1550 from tgodzik/remove-jdk-11
Browse files Browse the repository at this point in the history
bugfix: Remove JDK 11 as a possibility since it will not work now
  • Loading branch information
tgodzik authored Nov 5, 2024
2 parents c4bc745 + 36cb3e8 commit ed077ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/metals-vscode/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { JavaVersion, UserConfiguration } from "metals-languageclient";

declare const sym: unique symbol;

const possibleJavaVersions = ["11", "17", "21"];
const possibleJavaVersions = ["17", "21"];
/**
* Creates a newtype without any runtime overhead. It's important for ID to be both unique and descriptive.
*/
Expand Down

0 comments on commit ed077ac

Please sign in to comment.