fixing bogus comment. thanks to biesi for pointing this out.

This commit is contained in:
darin%meer.net 2004-05-08 00:26:40 +00:00
Родитель 55f29308b2
Коммит 64dbdb9bec
1 изменённых файлов: 4 добавлений и 6 удалений

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

@ -180,12 +180,10 @@ NS_NewChannel(nsIChannel **result,
return rv;
}
// Use this function with CAUTION. And do not use it on
// the UI thread. It creates a stream that blocks when
// you Read() from it and blocking the UI thread is
// illegal. If you don't want to implement a full
// blown asyncrhonous consumer (via nsIStreamListener)
// look at nsIStreamLoader instead.
// Use this function with CAUTION. It creates a stream that blocks when you
// Read() from it and blocking the UI thread is a bad idea. If you don't want
// to implement a full blown asyncrhonous consumer (via nsIStreamListener) look
// at nsIStreamLoader instead.
inline nsresult
NS_OpenURI(nsIInputStream **result,
nsIURI *uri,