We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cf2d0cd + ae0cfd5 commit f5aba17Copy full SHA for f5aba17
1 file changed
packages/ai-native/src/browser/widget/inline-stream-diff/inline-stream-diff.handler.tsx
@@ -398,20 +398,6 @@ export class InlineStreamDiffHandler extends Disposable {
398
this.monacoEditor.focus();
399
}
400
401
- end() {
402
- this.recompute(EComputerMode.legacy);
403
-
404
- const { changes } = this.currentDiffModel;
405
- const zone = this.getZone();
406
407
- const allAddRanges = changes.map((c) => {
408
- const lineNumber = zone.startLineNumber + c.addedRange.startLineNumber - 1;
409
- return new LineRange(lineNumber, lineNumber + 1);
410
- });
411
- this.renderPartialEditWidgets(allAddRanges);
412
- this.pushStackElement();
413
- }
414
415
get onPartialEditEvent() {
416
return this.livePreviewDiffDecorationModel.onPartialEditEvent;
417
0 commit comments