From: Andreas Gal Date: Tue, 10 May 2011 06:08:29 +0000 (-0700) Subject: remove getByte for now X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=ac17a847d06bbdde3bf2ea5daccc20e962766c96;p=pdf.js.git remove getByte for now --- diff --git a/pdf.js b/pdf.js index 3fc0374..8092e79 100644 --- a/pdf.js +++ b/pdf.js @@ -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)