mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Remove the unused isStream
property on various Stream
s
This property was added all the way back in PR 542, but hasn't actually been relied upon ever since PR 692. Note that there's a `isStream()` utility function which replaced the property years ago, hence the `isStream` property is now dead code.
This commit is contained in:
parent
3f320f0b11
commit
f7d99ccc26
2 changed files with 0 additions and 3 deletions
|
@ -271,8 +271,6 @@ var ChunkedStream = (function ChunkedStreamClosure() {
|
|||
subStream.dict = dict;
|
||||
return subStream;
|
||||
},
|
||||
|
||||
isStream: true
|
||||
};
|
||||
|
||||
return ChunkedStream;
|
||||
|
|
|
@ -129,7 +129,6 @@ var Stream = (function StreamClosure() {
|
|||
makeSubStream: function Stream_makeSubStream(start, length, dict) {
|
||||
return new Stream(this.bytes.buffer, start, length, dict);
|
||||
},
|
||||
isStream: true
|
||||
};
|
||||
|
||||
return Stream;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue