From 366add6304f4cda525323970c2caedadc932c19f Mon Sep 17 00:00:00 2001 From: Matt Godbolt Date: Mon, 10 Jun 2019 22:56:42 -0500 Subject: Temporarily disable java (see #1438) --- lib/compilers/java.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/compilers/java.js') diff --git a/lib/compilers/java.js b/lib/compilers/java.js index de5a514d4..132993ed6 100644 --- a/lib/compilers/java.js +++ b/lib/compilers/java.js @@ -88,7 +88,7 @@ class JavaCompiler extends BaseCompiler { filters.binary = true; return [ - '-Xlint:all', + '-Xlint:all' ]; } @@ -233,7 +233,7 @@ class JavaCompiler extends BaseCompiler { // They are all assigned to the previous explicit line number, // because the line consists of multiple instructions. while (currentInstr < method.instructions.length && - method.instructions[currentInstr].instrOffset !== instrOffset ) { + method.instructions[currentInstr].instrOffset !== instrOffset) { if (currentSourceLine !== -1) { // instructions without explicit line number get assigned the last explicit/same line number @@ -262,7 +262,7 @@ class JavaCompiler extends BaseCompiler { if (currentSourceLine !== -1) { // Assign remaining instructions to the same source line - while (currentInstr + 1 < method.instructions.length){ + while (currentInstr + 1 < method.instructions.length) { currentInstr++; method.instructions[currentInstr].sourceLine = currentSourceLine; } -- cgit v1.2.3