~rockstar/ubuntuone-ios-music/airplay-support

« back to all changes in this revision

Viewing changes to utilities/operations/AlbumArtLoader.m

  • Committer: Tarmac
  • Author(s): Paul Hummer
  • Date: 2012-09-21 01:22:10 UTC
  • mfrom: (233.1.25 sort-sso)
  • Revision ID: tarmac-20120921012210-mbflcb9482ec381w
[r=urbanape] Add dependency on UbuntuOneAuthKit

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
        return self;
54
54
}
55
55
 
56
 
- (void)dealloc
57
 
{
58
 
        [downloadCache release];
59
 
        [downloadedURLs release];
60
 
        [downloadQueue release];
61
 
        
62
 
        [super dealloc];
63
 
}
64
 
 
65
56
#pragma mark -
66
57
#pragma mark Public Methods
67
58
 
127
118
                        AlbumArtDownloadOperation *operation = [[AlbumArtDownloadOperation alloc] initWithArtId:artId URL:url];
128
119
                        operation.delegate = self;
129
120
                        [downloadQueue addOperation:operation];
130
 
                        [operation release];
131
121
                }
132
122
        }
133
123
}