@@ -73,9 +73,7 @@ static ParserFactory()
7373 parserMapping . Add ( ".docx" , typeDocx ) ;
7474 #endregion
7575
76- var typeRtf = new List < Type > ( ) ;
77- typeRtf . Add ( typeof ( RTFTextParser ) ) ;
78- parserMapping . Add ( ".rtf" , typeRtf ) ;
76+
7977
8078 var typePdf = new List < Type > ( ) ;
8179 typePdf . Add ( typeof ( PDFTextParser ) ) ;
@@ -94,17 +92,13 @@ static ParserFactory()
9492 typeEml . Add ( typeof ( EMLTextParser ) ) ;
9593 parserMapping . Add ( ".eml" , typeEml ) ;
9694
97- var typeCnm = new List < Type > ( ) ;
98- typeCnm . Add ( typeof ( CnmEmailParser ) ) ;
99- parserMapping . Add ( ".cnm" , typeCnm ) ;
100-
10195 var typeMsg = new List < Type > ( ) ;
10296 typeMsg . Add ( typeof ( MsgEmailParser ) ) ;
10397 typeMsg . Add ( typeof ( MsgTextParser ) ) ;
10498 parserMapping . Add ( ".msg" , typeMsg ) ;
10599 #endregion
106100
107- var typeVcard = new List < Type > ( ) ;
101+ var typeVcard = new List < Type > ( ) ;
108102 typeVcard . Add ( typeof ( VCardDocumentParser ) ) ;
109103 typeVcard . Add ( typeof ( VCardTextParser ) ) ;
110104 parserMapping . Add ( ".vcf" , typeVcard ) ;
@@ -188,7 +182,6 @@ public static IDomParser CreateDom(ParserContext context)
188182 IDomParser parser = ( IDomParser ) obj ;
189183 return parser ;
190184 }
191-
192185 public static VCardDocumentParser CreateVCard ( ParserContext context )
193186 {
194187 object obj = CreateObject ( context , typeof ( VCardDocumentParser ) , "CreateVCard" ) ;
0 commit comments