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)