comment out serialize while I try to figure out why linux is o=unhappy

This commit is contained in:
davidm%netscape.com 2000-05-03 03:52:57 +00:00
Родитель ef53e175f9
Коммит 44609fd0da
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -288,7 +288,8 @@ nsXMLMIMEDataSource::GetEnumerator(nsISimpleEnumerator* *aEnumerator) {
NS_IMETHODIMP
nsXMLMIMEDataSource::Serialize() {
return NS_ERROR_FAILURE;
#if 0
nsresult rv = NS_OK;
nsCOMPtr<nsIChannel> channel;
@ -394,6 +395,7 @@ nsXMLMIMEDataSource::Serialize() {
rv = stream->Close();
return rv;
#endif
}