Skip to content
This repository has been archived by the owner on Jun 6, 2018. It is now read-only.

Commit

Permalink
Change ivar initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
exalted committed Apr 17, 2012
1 parent 1c25f49 commit 02e75fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PTDownloadManager/PTDownloadManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ - (id)init
self = [super init];
if (self) {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
self.diskCachePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"PTDownloadManager"];
_diskCachePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"PTDownloadManager"];
_downloadQueue = [[NSOperationQueue alloc] init];
}
return self;
Expand Down

0 comments on commit 02e75fc

Please sign in to comment.