From 6df5714ec3ca465964e25263c35b180153b47d9b Mon Sep 17 00:00:00 2001 From: sbarman Date: Fri, 24 Jun 2011 14:10:25 -0700 Subject: [PATCH] removed debug code --- pdf.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pdf.js b/pdf.js index 7b0889485..c90e35bab 100644 --- a/pdf.js +++ b/pdf.js @@ -1351,20 +1351,12 @@ var CCITTFaxStream = (function() { constructor.prototype = Object.create(DecodeStream.prototype); constructor.prototype.readBlock = function() { - var vals = []; while (!this.eof) { var c = this.lookChar(); - vals.push(c); this.buf = EOF; this.ensureBuffer(this.bufferLength + 1); this.buffer[this.bufferLength++] = c; } - var all = ""; - for (var i = 0; i < vals.length; ++i) - all += vals[i] + " \n"; - - var text = document.getElementById("text"); - text.value = all; }; constructor.prototype.addPixels = function(a1, blackPixels) { var codingLine = this.codingLine;