Selaa lähdekoodia

AppDelegate: Rename setupLibraryBlock

Soomin Lee 6 vuotta sitten
vanhempi
commit
9099f28c4d
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      Sources/VLCAppDelegate.m

+ 2 - 2
Sources/VLCAppDelegate.m

@@ -84,11 +84,11 @@
 
 - (void)setup
 {
-    void (^setupLibraryBlock)(void) = ^{
+    void (^setupAppCoordinator)(void) = ^{
         self->appCoordinator = [[AppCoordinator alloc] initWithViewController:self->rootViewController];
         [self->appCoordinator start];
     };
-    [self validatePasscodeIfNeededWithCompletion:setupLibraryBlock];
+    [self validatePasscodeIfNeededWithCompletion:setupAppCoordinator];
 
     BOOL spotlightEnabled = ![VLCKeychainCoordinator passcodeLockEnabled];
     [[MLMediaLibrary sharedMediaLibrary] setSpotlightIndexingEnabled:spotlightEnabled];