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() {
reset: function() { reset: function() {
this.pos = this.start; this.pos = this.start;
}, },
getByte: function() {
var bytes = this.bytes;
if (this.pos >= bytes.length)
return;
return bytes[this.pos++];
},
lookChar: function() { lookChar: function() {
var bytes = this.bytes; var bytes = this.bytes;
if (this.pos >= bytes.length) if (this.pos >= bytes.length)

Loading…
Cancel
Save