Skip to content

Commit d0d9f70

Browse files
committed
Cleanup
1 parent 11f8d9f commit d0d9f70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Protest/Front/terminal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ class Terminal extends Window {
922922
}
923923

924924
for (const key in todo) {
925-
[x, y] = key.split(",");
925+
[, y] = key.split(",");
926926
delete this.screen[key];
927927
let y1 = parseInt(y) + 1;
928928
if (this.scrollRegionBottom && y1 >= this.scrollRegionBottom) continue;
@@ -944,7 +944,7 @@ class Terminal extends Window {
944944
}
945945

946946
for (const key in todo) {
947-
[x, y] = key.split(",");
947+
[, y] = key.split(",");
948948
delete this.screen[key];
949949
let y1 = parseInt(y) - 1;
950950
if (this.scrollRegionTop && y1 <= this.scrollRegionTop) continue;

0 commit comments

Comments
 (0)