Skip to content

Commit dccb86c

Browse files
author
Hanning Gong (Charles)
authored
Fix an issue where defaultLinesDiffComputer does not pass in the timeout variable (#213035)
Update defaultLinesDiffComputer.ts
1 parent 957f18b commit dccb86c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ export class DefaultLinesDiffComputer implements ILinesDiffComputer {
8080

8181
return this.myersDiffingAlgorithm.compute(
8282
sequence1,
83-
sequence2
83+
sequence2,
84+
timeout
8485
);
8586
})();
8687

0 commit comments

Comments
 (0)