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

Remove a few useless assignments.

This commit is contained in:
Max Schaefer 2017-11-03 09:39:11 +00:00
parent bc8f673522
commit 3ae37d1b06
3 changed files with 3 additions and 6 deletions

View file

@ -2447,7 +2447,6 @@ var Font = (function FontClosure() {
}
if (glyphId > 0 && hasGlyph(glyphId)) {
charCodeToGlyphId[charCode] = glyphId;
found = true;
}
}
}
@ -3084,7 +3083,6 @@ var Type1Font = (function Type1FontClosure() {
// Get the data block containing glyphs and subrs information
var headerBlock = getHeaderBlock(file, headerBlockLength);
headerBlockLength = headerBlock.length;
var headerBlockParser = new Type1Parser(headerBlock.stream, false,
SEAC_ANALYSIS_ENABLED);
headerBlockParser.extractFontHeader(properties);
@ -3097,7 +3095,6 @@ var Type1Font = (function Type1FontClosure() {
// Decrypt the data blocks and retrieve it's content
var eexecBlock = getEexecBlock(file, eexecBlockLength);
eexecBlockLength = eexecBlock.length;
var eexecBlockParser = new Type1Parser(eexecBlock.stream, true,
SEAC_ANALYSIS_ENABLED);
var data = eexecBlockParser.extractFontProgram();