summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Paul <chpwn@chpwn.com>2011-02-14 00:40:21 -0800
committerGrant Paul <chpwn@chpwn.com>2011-02-14 00:40:21 -0800
commit807b2b8d0c414267a1084e2baa9ffba6bc17d230 (patch)
tree3f53221e2345ee71e27540a5719b0b9dc107c926
parentc026045add801ae7633056d39ae1e68eebe9765e (diff)
Fix lazy loading of PackageController, dependent on lazy laoding of BrowserController.'
-rw-r--r--MobileCydia.mm9
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;
}