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 82ef4b9 commit e8397d7Copy full SHA for e8397d7
src/VSCode/src/extension.ts
@@ -338,7 +338,7 @@ const typescriptGenerators = [
338
* @param isTypeScript Whether the generator is for TypeScript
339
* @returns true if the generator requires Java, false otherwise
340
*/
341
-function generatorRequiresJava(generator: string, isTypeScript: boolean = false): boolean {
+function generatorRequiresJava(generator: string, isTypeScript = false): boolean {
342
if (isTypeScript) {
343
const typescriptGenerator = typescriptGenerators.find(g => g.command === generator);
344
return typescriptGenerator?.requiresJava ?? false;
0 commit comments