diff options
author | Grant Paul <chpwn@chpwn.com> | 2011-02-14 00:40:21 -0800 |
---|---|---|
committer | Grant Paul <chpwn@chpwn.com> | 2011-02-14 00:40:21 -0800 |
commit | 807b2b8d0c414267a1084e2baa9ffba6bc17d230 (patch) | |
tree | 3f53221e2345ee71e27540a5719b0b9dc107c926 | |
parent | c026045add801ae7633056d39ae1e68eebe9765e (diff) |
Fix lazy loading of PackageController, dependent on lazy laoding of BrowserController.'
-rw-r--r-- | MobileCydia.mm | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index dcc9b15..48aa430 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -5470,10 +5470,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [super dealloc]; } -- (void) release { - [super release]; -} - - (NSURL *) navigationURL { return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://package/%@", [package_ id]]]; } @@ -5566,16 +5562,11 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } #endif -- (void) viewWillAppear:(BOOL)animated { - [super viewWillAppear:animated]; -} - - (id) initWithDatabase:(Database *)database forPackage:(NSString *)name { if ((self = [super init]) != nil) { database_ = database; buttons_ = [[NSMutableArray alloc] initWithCapacity:4]; name_ = [[NSString alloc] initWithString:name]; - [self reloadData]; } return self; } |