Skip to content

Commit

Permalink
fix testss
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Sep 3, 2019
1 parent 309b492 commit 9647d0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/common/editor/textDiffEditorModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import { DiffEditorModel } from 'vs/workbench/common/editor/diffEditorModel';
*/
export class TextDiffEditorModel extends DiffEditorModel {

protected readonly _originalModel: BaseTextEditorModel | null = null;
protected readonly _modifiedModel: BaseTextEditorModel | null = null;
protected readonly _originalModel!: BaseTextEditorModel | null;
protected readonly _modifiedModel!: BaseTextEditorModel | null;

private _textDiffEditorModel: IDiffEditorModel | null = null;

Expand Down

0 comments on commit 9647d0e

Please sign in to comment.