diff --git a/src/UglyToad.PdfPig/Fonts/CompactFontFormat/Dictionaries/CompactFontFormatTopLevelDictionaryReader.cs b/src/UglyToad.PdfPig/Fonts/CompactFontFormat/Dictionaries/CompactFontFormatTopLevelDictionaryReader.cs index 41cb323c..2f326a95 100644 --- a/src/UglyToad.PdfPig/Fonts/CompactFontFormat/Dictionaries/CompactFontFormatTopLevelDictionaryReader.cs +++ b/src/UglyToad.PdfPig/Fonts/CompactFontFormat/Dictionaries/CompactFontFormatTopLevelDictionaryReader.cs @@ -117,35 +117,27 @@ break; case 31: dictionary.CidFontOperators.Version = GetIntOrDefault(operands); - dictionary.IsCidFont = true; break; case 32: dictionary.CidFontOperators.Revision = GetIntOrDefault(operands); - dictionary.IsCidFont = true; break; case 33: dictionary.CidFontOperators.Type = GetIntOrDefault(operands); - dictionary.IsCidFont = true; break; case 34: dictionary.CidFontOperators.Count = GetIntOrDefault(operands); - dictionary.IsCidFont = true; break; case 35: dictionary.CidFontOperators.UidBase = GetIntOrDefault(operands); - dictionary.IsCidFont = true; break; case 36: dictionary.CidFontOperators.FontDictionaryArray = GetIntOrDefault(operands); - dictionary.IsCidFont = true; break; case 37: dictionary.CidFontOperators.FontDictionarySelect = GetIntOrDefault(operands); - dictionary.IsCidFont = true; break; case 38: dictionary.CidFontOperators.FontName = GetString(operands, stringIndex); - dictionary.IsCidFont = true; break; } }