rm console

This commit is contained in:
Andrew Pareles 2025-01-17 19:10:13 -08:00
parent dc33d4d0c0
commit f517dc79a9

View file

@ -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 }