]> git.parisson.com Git - pdf.js.git/commitdiff
removed debug code
authorsbarman <sbarman@L3CWZ5T.(none)>
Fri, 24 Jun 2011 21:10:25 +0000 (14:10 -0700)
committersbarman <sbarman@L3CWZ5T.(none)>
Fri, 24 Jun 2011 21:10:25 +0000 (14:10 -0700)
pdf.js

diff --git a/pdf.js b/pdf.js
index 7b088948560431a42d23fdbe240888cf360850d0..c90e35bab013697b76b70f394d6db62c1a11680b 100644 (file)
--- 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;