remove a double check - thanks dbaron ;)

This commit is contained in:
joshmoz%gmail.com 2005-02-28 02:33:42 +00:00
Родитель 31d9018f20
Коммит 2789c949cd
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -162,8 +162,8 @@ enum {
// forget it ever met us and necko will clean it up on its own.
if (mDownloader) {
mDownloader->DetachDownloadDisplay();
NS_RELEASE(mDownloader);
}
NS_IF_RELEASE(mDownloader);
[mStartTime release];
[mSourceURL release];
@ -184,8 +184,8 @@ enum {
// forget it ever met us and necko will clean it up on its own.
if (mDownloader) {
mDownloader->DetachDownloadDisplay();
NS_RELEASE(mDownloader);
}
NS_IF_RELEASE(mDownloader);
}
-(void)viewDidLoad