diff --git a/src/core/evaluator.js b/src/core/evaluator.js index 012521950..510fbe4ae 100644 --- a/src/core/evaluator.js +++ b/src/core/evaluator.js @@ -4192,7 +4192,6 @@ class PartialEvaluator { const standardFontName = getStandardFontName(baseFontName); let file = null; if (standardFontName) { - properties.isStandardFont = true; file = await this.fetchStandardFontData(standardFontName); properties.isInternalFont = !!file; } @@ -4264,7 +4263,6 @@ class PartialEvaluator { warn(`translateFont - fetching "${fontName.name}" font file: "${ex}".`); fontFile = new NullStream(); } - let isStandardFont = false; let isInternalFont = false; let glyphScaleFactors = null; if (fontFile) { @@ -4297,7 +4295,6 @@ class PartialEvaluator { } else if (!isType3Font) { const standardFontName = getStandardFontName(fontName.name); if (standardFontName) { - isStandardFont = true; fontFile = await this.fetchStandardFontData(standardFontName); isInternalFont = !!fontFile; } @@ -4311,7 +4308,6 @@ class PartialEvaluator { length1, length2, length3, - isStandardFont, isInternalFont, loadedName: baseDict.loadedName, composite,