Commit 2f5b22d2 authored by yann300's avatar yann300

remove uneeded call

parent 5f81375b
...@@ -18,7 +18,6 @@ function Debugger (id, appAPI, executionContextEvent, editorEvent) { ...@@ -18,7 +18,6 @@ function Debugger (id, appAPI, executionContextEvent, editorEvent) {
this.debugger.setBreakpointManager(this.breakPointManager) this.debugger.setBreakpointManager(this.breakPointManager)
this.breakPointManager.event.register('breakpointHit', (sourceLocation) => { this.breakPointManager.event.register('breakpointHit', (sourceLocation) => {
this.editor.setBreakpoint(this.touchedBreakpoint, 'breakpointUntouched')
var lineColumnPos = this.offsetToLineColumnConverter.offsetToLineColumn(sourceLocation, sourceLocation.file, this.editor, this.compiler.lastCompilationResult.data) var lineColumnPos = this.offsetToLineColumnConverter.offsetToLineColumn(sourceLocation, sourceLocation.file, this.editor, this.compiler.lastCompilationResult.data)
this.editor.setBreakpoint(lineColumnPos.start.line, 'breakpointTouched') this.editor.setBreakpoint(lineColumnPos.start.line, 'breakpointTouched')
var self = this var self = this
......
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