From ac17a847d06bbdde3bf2ea5daccc20e962766c96 Mon Sep 17 00:00:00 2001 From: Andreas Gal Date: Mon, 9 May 2011 23:08:29 -0700 Subject: [PATCH] remove getByte for now --- pdf.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pdf.js b/pdf.js index 3fc03746f..8092e7974 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)