diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2021-11-21 19:15:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-21 19:15:27 +0100 |
commit | 0efd82d6a43f59f19b17d004942003a76765224c (patch) | |
tree | 5d8f0089eb5ac28b8cd87cf270b4dfa2b2cd4f18 | |
parent | 75c4b86a6865268ad66636b92d75cbabef222d47 (diff) | |
download | compiler-explorer-0efd82d6a43f59f19b17d004942003a76765224c.tar.gz compiler-explorer-0efd82d6a43f59f19b17d004942003a76765224c.zip |
Fix linter error in erlang.jsgh-1292
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.
```
-rw-r--r-- | lib/compilers/erlang.js | 3 |
1 files changed, 1 insertions, 2 deletions
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) { |