diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-07 12:49:10 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-07 12:49:10 -0800 |
commit | 649e13a2f101f5c7d748d0251a5db30480f8b8c6 (patch) | |
tree | e170b946898053f348815f2e27c38c5ec4c89866 /MobileCydia.mm | |
parent | c4b530a71c84054cad29612cff922bc381de8643 (diff) |
We are no longer recycling package controllers.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 05d2a02..0521483 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -1185,7 +1185,6 @@ bool isSectionVisible(NSString *section) { @protocol CydiaDelegate - (void) retainNetworkActivityIndicator; - (void) releaseNetworkActivityIndicator; -- (void) setPackageController:(CYPackageController *)view; - (void) clearPackage:(Package *)package; - (void) installPackage:(Package *)package; - (void) installPackages:(NSArray *)packages; @@ -5411,8 +5410,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } - (void) release { - if ([self retainCount] == 1) - [delegate_ setPackageController:self]; [super release]; } @@ -8614,12 +8611,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [self setNetworkActivityIndicatorVisible:NO]; } -- (void) setPackageController:(CYPackageController *)view { - WebThreadLock(); - [view setPackage:nil]; - WebThreadUnlock(); -} - - (void) cancelAndClear:(bool)clear { @synchronized (self) { if (clear) { |