Selaa lähdekoodia

AppCoordinator: Remove unnecessary variable assignment

Soomin Lee 6 vuotta sitten
vanhempi
commit
3792ba59f8
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1 2
      Sources/Coordinators/AppCoordinator.swift

+ 1 - 2
Sources/Coordinators/AppCoordinator.swift

@@ -49,8 +49,7 @@ class Services: NSObject {
     }
 
     @objc func start() {
-        let tabbarCoordinator = VLCTabBarCoordinator(tabBarController: tabBarController, services: services)
-        childCoordinators.append(tabbarCoordinator)
+        childCoordinators.append(VLCTabBarCoordinator(tabBarController: tabBarController, services: services))
     }
 }