aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/java.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/java.ts')
-rw-r--r--lib/compilers/java.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/java.ts b/lib/compilers/java.ts
index cf665646e..c9bd3aef2 100644
--- a/lib/compilers/java.ts
+++ b/lib/compilers/java.ts
@@ -51,7 +51,7 @@ export class JavaCompiler extends BaseCompiler {
disabledFilters: ['labels', 'directives', 'commentOnly', 'trim'],
...compilerInfo,
},
- env,
+ env
);
this.javaRuntime = this.compilerProps<string>(`compiler.${this.compiler.id}.runtime`);
this.mainRegex = /public static ?(.*?) void main\(java\.lang\.String\[]\)/;
@@ -105,7 +105,7 @@ export class JavaCompiler extends BaseCompiler {
];
}
return oneResult;
- }),
+ })
);
const merged: ParsedAsmResult = {asm: []};
@@ -178,7 +178,7 @@ export class JavaCompiler extends BaseCompiler {
return classFile;
}
return null;
- }),
+ })
);
const candidates = results.filter(file => file !== null);