Skip to content

Commit 80db360

Browse files
committed
Remove unused lastCode property from the LZWStream class (PR 324 follow-up)
This appear to have been unused already in PR 324 all the way back in 2011.
1 parent bc8efa1 commit 80db360

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)