Commit fc2e5b14 authored by Alex Beregszaszi's avatar Alex Beregszaszi

Remove dead parameter

parent 1297bac1
......@@ -407,7 +407,7 @@ var run = function () {
}
var executionContext = new ExecutionContext();
var compiler = new Compiler(editor, handleGithubCall, updateFiles);
var compiler = new Compiler(editor, handleGithubCall);
var formalVerification = new FormalVerification($('#verificationView'), compiler.event);
var transactionDebugger = new Debugger('#debugger', editor, compiler, executionContext.event, swicthToFile);
......
......@@ -10,7 +10,7 @@ var EventManager = require('../lib/eventManager');
/*
trigger compilationFinished, compilerLoaded, compilationStarted
*/
function Compiler (editor, handleGithubCall, updateFiles) {
function Compiler (editor, handleGithubCall) {
var self = this;
this.event = new EventManager();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment