Skip to content

Commit 9345328

Browse files
committed
Fixes CI
1 parent 9bdcaf2 commit 9345328

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export class DiffEditorDecorations extends Disposable {
2121
private readonly _originalEditor: CodeEditorWidget,
2222
private readonly _modifiedEditor: CodeEditorWidget,
2323
private readonly _diffModel: IObservable<DiffModel | undefined>,
24-
private readonly _renderSideBySide: IObservable<boolean>,
2524
private readonly _shouldRenderRevertArrows: IObservable<boolean>,
2625
) {
2726
super();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export class DiffEditorWidget2 extends DelegatingEditor implements IDiffEditor {
166166

167167
this._register(autorunWithStore2('decorations', (reader, store) => {
168168
store.add(new (readHotReloadableExport(DiffEditorDecorations, reader))(
169-
this._originalEditor, this._modifiedEditor, this._diffModel, this._renderSideBySide, this._shouldRenderRevertArrows,
169+
this._originalEditor, this._modifiedEditor, this._diffModel, this._shouldRenderRevertArrows,
170170
));
171171
}));
172172

0 commit comments

Comments
 (0)