Skip to content

Commit 425413a

Browse files
committed
Uncomment unused symbols.
1 parent 272fdf6 commit 425413a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ function applyOriginalEdits(diff: IDocumentDiff, textEdits: TextEditInfo[], orig
482482
}
483483
return flip(diff3);*/
484484
}
485-
485+
/*
486486
function flip(diff: IDocumentDiff): IDocumentDiff {
487487
return {
488488
changes: diff.changes.map(c => c.flip()),
@@ -491,7 +491,7 @@ function flip(diff: IDocumentDiff): IDocumentDiff {
491491
quitEarly: diff.quitEarly,
492492
};
493493
}
494-
494+
*/
495495
function applyModifiedEdits(diff: IDocumentDiff, textEdits: TextEditInfo[], originalTextModel: ITextModel, modifiedTextModel: ITextModel): IDocumentDiff | undefined {
496496
return undefined;
497497
/*
@@ -521,7 +521,7 @@ function applyModifiedEdits(diff: IDocumentDiff, textEdits: TextEditInfo[], orig
521521
moves,
522522
};*/
523523
}
524-
524+
/*
525525
function applyEditToLineRange(range: LineRange, textEdits: TextEditInfo[]): LineRange | undefined {
526526
let rangeStartLineNumber = range.startLineNumber;
527527
let rangeEndLineNumberEx = range.endLineNumberExclusive;
@@ -588,3 +588,4 @@ function applyModifiedEditsToLineRangeMappings(changes: readonly LineRangeMappin
588588
);
589589
return newChanges;
590590
}
591+
*/

0 commit comments

Comments
 (0)