]> git.parisson.com Git - pdf.js.git/commitdiff
fixed indent
authorsbarman <sbarman@L3CWZ5T.(none)>
Wed, 22 Jun 2011 04:51:54 +0000 (21:51 -0700)
committersbarman <sbarman@L3CWZ5T.(none)>
Wed, 22 Jun 2011 04:51:54 +0000 (21:51 -0700)
pdf.js

diff --git a/pdf.js b/pdf.js
index dcd7e858b466ccd62853f54913682f8f9f1a0266..38a2e0dd435a929be1f29fcd34fe37efe43465b6 100644 (file)
--- a/pdf.js
+++ b/pdf.js
@@ -387,9 +387,9 @@ var FlateStream = (function() {
         if (codeSize == 0|| codeSize < codeLen || codeLen == 0)
             error("Bad encoding in flate stream");
         this.codeBuf = (codeBuf >> codeLen);
-            this.codeSize = (codeSize - codeLen);
-            this.bytesPos = bytesPos;
-            return codeVal;
+        this.codeSize = (codeSize - codeLen);
+        this.bytesPos = bytesPos;
+        return codeVal;
     };
     constructor.prototype.generateHuffmanTable = function(lengths) {
         var n = lengths.length;