Skip to content

Commit

Permalink
Make default a boolean instead of a string (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
WispySparks authored Dec 3, 2024
1 parent c89c920 commit 3b518f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ private async Task ConfigureVsCodeSettings()
{
["name"] = "JavaSE-17",
["path"] = Path.Combine(homePath, "jdk"),
["default"] = "true"
["default"] = true
};
javaConfigProps.Add(javaConfigProp);
settingsJson["java.configuration.runtimes"] = javaConfigProps;
Expand Down

0 comments on commit 3b518f6

Please sign in to comment.