Took out NS_ERROR when file not found.

This commit is contained in:
warren%netscape.com 1999-08-03 21:59:40 +00:00
Родитель 0042af1e0c
Коммит 004a107d21
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -559,7 +559,8 @@ rdf_BlockingParse(nsIURI* aURL, nsIStreamListener* aConsumer)
#endif
if (NS_FAILED(rv))
{
NS_ERROR("unable to open blocking stream");
// file doesn't exist -- just exit
// NS_ERROR("unable to open blocking stream");
return rv;
}