Skip to content

Commit 8e242d5

Browse files
committed
Fixes CI
1 parent 425413a commit 8e242d5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/vs/editor/browser/widget/diffEditorWidget2/diffEditorViewModel.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@ import { Disposable, toDisposable } from 'vs/base/common/lifecycle';
99
import { IObservable, IReader, ISettableObservable, ITransaction, autorunWithStore, derived, observableSignal, observableSignalFromEvent, observableValue, transaction, waitForState } from 'vs/base/common/observable';
1010
import { readHotReloadableExport } from 'vs/editor/browser/widget/diffEditorWidget2/utils';
1111
import { ISerializedLineRange, LineRange } from 'vs/editor/common/core/lineRange';
12-
import { Range } from 'vs/editor/common/core/range';
13-
import { AdvancedLinesDiffComputer, lineRangeMappingFromRangeMappings } from 'vs/editor/common/diff/advancedLinesDiffComputer';
12+
import { AdvancedLinesDiffComputer } from 'vs/editor/common/diff/advancedLinesDiffComputer';
1413
import { IDocumentDiff, IDocumentDiffProvider } from 'vs/editor/common/diff/documentDiffProvider';
15-
import { LineRangeMapping, MovedText, RangeMapping } from 'vs/editor/common/diff/linesDiffComputer';
14+
import { LineRangeMapping, MovedText } from 'vs/editor/common/diff/linesDiffComputer';
1615
import { IDiffEditorModel, IDiffEditorViewModel } from 'vs/editor/common/editorCommon';
1716
import { ITextModel } from 'vs/editor/common/model';
1817
import { TextEditInfo } from 'vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/beforeEditPositionMapper';
1918
import { combineTextEditInfos } from 'vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/combineTextEditInfos';
20-
import { lengthAdd, lengthDiffNonNegative, lengthGetLineCount, lengthOfRange, lengthToPosition, lengthZero, positionToLength } from 'vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/length';
2119
import { DiffEditorOptions } from './diffEditorOptions';
2220

2321
export class DiffEditorViewModel extends Disposable implements IDiffEditorViewModel {

0 commit comments

Comments
 (0)