From 528f06bc62502cb60245954f184a96b88a74b89d Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Tue, 13 Jun 2017 20:03:29 -0700 Subject: [PATCH] Remove log --- src/SelectionManager.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/SelectionManager.ts b/src/SelectionManager.ts index 930f09d1..f027e4a3 100644 --- a/src/SelectionManager.ts +++ b/src/SelectionManager.ts @@ -524,7 +524,6 @@ export class SelectionManager extends EventEmitter { public setSelection(col: number, row: number, length: number): void { this._model.clearSelection(); this._removeMouseDownListeners(); - console.log('setSelection', arguments); this._model.selectionStart = [col, row]; this._model.selectionStartLength = length; this.refresh();