1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-24 17:18:07 +02:00

remove getByte for now

This commit is contained in:
Andreas Gal 2011-05-09 23:08:29 -07:00
parent bbbf30c81f
commit ac17a847d0

6
pdf.js
View file

@ -26,12 +26,6 @@ var Stream = (function() {
reset: function() {
this.pos = this.start;
},
getByte: function() {
var bytes = this.bytes;
if (this.pos >= bytes.length)
return;
return bytes[this.pos++];
},
lookChar: function() {
var bytes = this.bytes;
if (this.pos >= bytes.length)