Browse Source

remove getByte for now

Andreas Gal 14 years ago
parent
commit
ac17a847d0
  1. 6
      pdf.js

6
pdf.js

@ -26,12 +26,6 @@ var Stream = (function() { @@ -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)

Loading…
Cancel
Save