From ef087ec8973cad8008afd54c0a4a9a9ad8388c96 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 5 Sep 2018 15:20:12 -0400 Subject: [PATCH] remove unused code --- src/app/debugger/debugger.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app/debugger/debugger.js b/src/app/debugger/debugger.js index dbec8b6114..4a8c3c1859 100644 --- a/src/app/debugger/debugger.js +++ b/src/app/debugger/debugger.js @@ -1,5 +1,4 @@ 'use strict' -// var EthdebuggerUI = require('./remix-debugger/src/ui/EthdebuggerUI') var Ethdebugger = require('remix-debug').EthDebugger var remixLib = require('remix-lib') var EventManager = remixLib.EventManager @@ -33,15 +32,12 @@ function Debugger (container, sourceHighlighter, localRegistry) { return null } }) - // this.debugger_ui = new EthdebuggerUI({debugger: this.debugger}) this.sourceMappingDecoder = new remixLib.SourceMappingDecoder() - // container.appendChild(this.debugger_ui.render()) this.breakPointManager = new remixLib.code.BreakpointManager(this.debugger, (sourceLocation) => { return self._deps.offsetToLineColumnConverter.offsetToLineColumn(sourceLocation, sourceLocation.file, this._deps.compiler.lastCompilationResult.source.sources, this._deps.compiler.lastCompilationResult.data.sources) }, (step) => { self.event.trigger('breakpointStep', [step]) - // this.debugger_ui.stepManager.jumpTo(step) }) this.debugger.setBreakpointManager(this.breakPointManager)