From 0efd82d6a43f59f19b17d004942003a76765224c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Poulhi=C3=A8s?= Date: Sun, 21 Nov 2021 19:15:27 +0100 Subject: Fix linter error in erlang.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Trivial linter error: ``` compiler-explorer/lib/compilers/erlang.js 65:1 warning More than 1 blank line not allowed no-multiple-empty-lines ✖ 1 problem (0 errors, 1 warning) 0 errors and 1 warning potentially fixable with the `--fix` option. ``` --- lib/compilers/erlang.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/compilers/erlang.js') diff --git a/lib/compilers/erlang.js b/lib/compilers/erlang.js index b844b822b..d91da4d16 100644 --- a/lib/compilers/erlang.js +++ b/lib/compilers/erlang.js @@ -61,8 +61,7 @@ export class ErlangCompiler extends BaseCompiler { this.parseCompilationOutput(result, transformedInput); return result; } - - + getVersion() { logger.info(`Gathering ${this.compiler.id} version information on ${this.compiler.exe}...`); if (this.compiler.explicitVersion) { -- cgit v1.2.3