From: notmasteryet Date: Thu, 12 Jan 2012 02:54:27 +0000 (-0600) Subject: fix lint error, remove unnecessary comment X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=8af527919a9c24c913b5e1916f914d9ca0d4982e;p=pdf.js.git fix lint error, remove unnecessary comment --- diff --git a/src/jpx.js b/src/jpx.js index ab8e1b0..6f9f11c 100644 --- a/src/jpx.js +++ b/src/jpx.js @@ -351,8 +351,6 @@ var JpxImage = (function JpxImageClosure() { ]; function BitModel(width, height, subband, zeroBitPlanes) { - // TODO do we need to know offsets of the coefficients (not only width - // and height) ? this.width = width; this.height = height; @@ -1405,7 +1403,7 @@ var JpxImage = (function JpxImageClosure() { if (!scalarExpounded) { // formula E-5 mu = spqcds[0].mu; - epsilon = spqcds[0].epsilon + (i > 0 ? 1 - i : 0); + epsilon = spqcds[0].epsilon + (i > 0 ? 1 - i : 0); } else { mu = spqcds[b].mu; epsilon = spqcds[b].epsilon;