Remove redundant registration of well-formed DTD. r=rickg

This commit is contained in:
waterson%netscape.com 1999-10-28 22:15:18 +00:00
Родитель a021803d37
Коммит 25a8f2de07
1 изменённых файлов: 0 добавлений и 15 удалений

Просмотреть файл

@ -927,23 +927,8 @@ RDFXMLDataSourceImpl::Refresh(PRBool aBlocking)
nsAutoString utf8("UTF-8");
parser->SetDocumentCharset(utf8, kCharsetFromDocTypeDefault);
parser->SetContentSink(sink);
// XXX this should eventually be kRDFDTDCID (oh boy, that's a
// pretty identifier). The RDF DTD will be a much more
// RDF-resilient parser.
nsCOMPtr<nsIDTD> dtd;
rv = nsComponentManager::CreateInstance(kWellFormedDTDCID,
nsnull,
kIDTDIID,
getter_AddRefs(dtd));
if (NS_FAILED(rv)) return rv;
parser->RegisterDTD(dtd);
nsCOMPtr<nsIStreamListener> lsnr;
rv = parser->QueryInterface(kIStreamListenerIID, getter_AddRefs(lsnr));
if (NS_FAILED(rv)) return rv;