Skip to content

Commit 3c43414

Browse files
Merge pull request #20733 from Snuffleupagus/LZWStream-rm-lastCode
Remove unused `lastCode` property from the `LZWStream` class (PR 324 follow-up)
2 parents bc8efa1 + 80db360 commit 3c43414

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/core/lzw_stream.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ class LZWStream extends DecodeStream {
5656
}
5757
this.bitsCached = bitsCached -= n;
5858
this.cachedData = cachedData;
59-
this.lastCode = null;
6059
return (cachedData >>> bitsCached) & ((1 << n) - 1);
6160
}
6261

0 commit comments

Comments
 (0)