From f517dc79a90fe06f55abdd5b260dacf092ad729a Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Fri, 17 Jan 2025 19:10:13 -0800 Subject: [PATCH] rm console --- src/vs/workbench/contrib/void/browser/inlineDiffsService.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/vs/workbench/contrib/void/browser/inlineDiffsService.ts b/src/vs/workbench/contrib/void/browser/inlineDiffsService.ts index 093969af..76bcbd8c 100644 --- a/src/vs/workbench/contrib/void/browser/inlineDiffsService.ts +++ b/src/vs/workbench/contrib/void/browser/inlineDiffsService.ts @@ -626,11 +626,8 @@ class InlineDiffsService extends Disposable implements IInlineDiffsService { const consistentWidgetId = this._consistentItemService.addConsistentItemToURI({ uri, fn: (editor) => { - console.log('diffOriignal', diff.startLine, diff.originalStartLine, diff.type === 'deletion' && diff.originalEndLine) - let startLine: number let offsetLines: number - if (diff.type === 'insertion' || diff.type === 'edit') { startLine = diff.startLine // green start offsetLines = 0 @@ -646,7 +643,6 @@ class InlineDiffsService extends Disposable implements IInlineDiffsService { startLine = diff.startLine - 1 offsetLines = 1 } - } else { throw 1 }