diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-25 02:31:59 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-25 02:31:59 -0700 |
commit | cc3b7d31f2308a3aa5e93ab77fb5f842b0920860 (patch) | |
tree | 42d56bcbc06f8602cd19a82218c8ff806de447dc /MobileCydia.mm | |
parent | dd58e110cb9c1a13dfddbde6e4604de107f4cfba (diff) |
Fix incompetent code ordering.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 6746085..1d2c1d6 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -8637,8 +8637,8 @@ static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachabi if (editingStyle == UITableViewCellEditingStyleDelete) { Source *source = [self sourceAtIndexPath:indexPath]; [Sources_ removeObjectForKey:[source key]]; - [delegate_ reloadDataWithInvocation:nil]; [delegate_ _saveConfig]; + [delegate_ reloadDataWithInvocation:nil]; } } |