remove redundant release statements

This commit is contained in:
Mitchell Livingston 2008-04-06 04:55:20 +00:00
parent 12969e060d
commit f63bebdc09
1 changed files with 0 additions and 9 deletions

View File

@ -66,9 +66,6 @@
{
[fDownload cancel];
[fDownload release];
fDownload = nil;
[NSApp endSheet: fStatusWindow];
[fStatusWindow orderOut: self];
[self release];
@ -92,9 +89,6 @@
- (void) download: (NSURLDownload *) download didFailWithError: (NSError *) error
{
[fDownload release];
fDownload = nil;
[fProgressBar setHidden: YES];
[NSApp endSheet: fStatusWindow];
@ -114,9 +108,6 @@
- (void) downloadDidFinish: (NSURLDownload *) download
{
[fDownload release];
fDownload = nil;
//change to indeterminate while processing
[fProgressBar setIndeterminate: YES];
[fProgressBar startAnimation: self];