From 35ed5f60eaffc4b720802e87e775a550fac41659 Mon Sep 17 00:00:00 2001 From: Siddharth Srinivasan Date: Tue, 18 Mar 2025 23:07:59 +0530 Subject: [PATCH] Updated base URL for Oracle OpenJDK 24 GA downloads Signed-off-by: Siddharth Srinivasan --- vscode/src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode/src/constants.ts b/vscode/src/constants.ts index 4844e354..33c5faa9 100644 --- a/vscode/src/constants.ts +++ b/vscode/src/constants.ts @@ -34,7 +34,7 @@ export namespace jdkDownloaderConstants { export const ORACLE_JDK_FALLBACK_VESIONS = ['24', '21']; export const OPEN_JDK_VERSION_DOWNLOAD_LINKS: { [key: string]: string } = { - "23": "https://download.java.net/java/GA/jdk23.0.2/6da2a6609d6e406f85c491fcb119101b/7/GPL/openjdk-23.0.2" + "24": "https://download.java.net/java/GA/jdk24/1f9ff9062db4449d8ca828c504ffae90/36/GPL/openjdk-24" }; }