mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Remove unnecessary else
This commit is contained in:
+1
-2
@@ -857,9 +857,8 @@ export class Terminal extends EventEmitter implements ITerminal, IDisposable, II
|
||||
if (ch > 2047) {
|
||||
data.push(2047);
|
||||
return;
|
||||
} else {
|
||||
data.push(ch);
|
||||
}
|
||||
data.push(ch);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user