This commit is contained in:
Eric MacDonald
2021-09-08 21:55:50 -04:00
parent a18c832754
commit 710066f228

View File

@@ -349,8 +349,6 @@ class WTVLzpf {
* @returns {undefined}
*/
EncodeLiteral(code_length, code) {
// Using >>> to stick with unsigned integers without making a mess with casting.
this.current_literal |= code >>> (this.current_length & 0x1F);
this.current_length += code_length;