From 12835c9d6d82aeabaa962b541fd676a30b444c1a Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 22 Feb 2011 18:29:48 -0800 Subject: Remove obsolete -[ProgressController isRunning]. --- MobileCydia.mm | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/MobileCydia.mm b/MobileCydia.mm index 67c8714..907498a 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4763,7 +4763,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { UITextView *output_; UITextLabel *status_; UIPushButton *close_; - BOOL running_; SHA1SumValue springlist_; SHA1SumValue notifyconf_; _H title_; @@ -4775,8 +4774,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { - (void) setTitle:(NSString *)title; -- (BOOL) isRunning; - @end @implementation ProgressController @@ -4879,8 +4876,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } - (void) closeButtonPushed { - running_ = NO; - UpdateExternalStatus(0); switch (Finish_) { @@ -4938,7 +4933,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [[self view] addSubview:status_]; [delegate_ retainNetworkActivityIndicator]; - running_ = YES; { FileFd file; @@ -5064,10 +5058,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [progress_ setProgress:[percent floatValue]]; } -- (BOOL) isRunning { - return running_; -} - @end /* }}} */ -- cgit v1.2.3