diff options
author | Partouf <partouf@gmail.com> | 2018-01-28 00:34:05 +0100 |
---|---|---|
committer | Partouf <partouf@gmail.com> | 2018-01-28 00:34:05 +0100 |
commit | 9a76e777a7476b3993f5de1bbfde508d9a245b84 (patch) | |
tree | 302850f7ebc896cbc91f7997bf1b37543b5140ce /lib/compilers/swift.js | |
parent | bc792ad6e51b84ccc9bf79ab1b7f1e9c20c2c560 (diff) | |
download | compiler-explorer-9a76e777a7476b3993f5de1bbfde508d9a245b84.tar.gz compiler-explorer-9a76e777a7476b3993f5de1bbfde508d9a245b84.zip |
remove return initialise, no need for unittestmode
Diffstat (limited to 'lib/compilers/swift.js')
-rw-r--r-- | lib/compilers/swift.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/swift.js b/lib/compilers/swift.js index 832608eba..8235bac57 100644 --- a/lib/compilers/swift.js +++ b/lib/compilers/swift.js @@ -28,7 +28,7 @@ const BaseCompiler = require('../base-compiler'), class SwiftCompiler extends BaseCompiler { constructor(info, env) { super(info, env); - return this.initialise(); + this.initResult = this.initialise(); } handlePostProcessResult(result, postResult) { |