1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Clean up putBinaryImageData().

This commit is contained in:
Nicholas Nethercote 2014-02-24 19:41:04 -08:00
parent f62c1c469f
commit 4e1f92a893
2 changed files with 20 additions and 23 deletions

View file

@ -457,7 +457,6 @@ var PDFImage = (function PDFImageClosure() {
var newArray = new Uint8Array(imgArray.length);
newArray.set(imgArray);
imgData.data = newArray;
imgData.origLength = imgArray.length;
return imgData;
}
}