Prechádzať zdrojové kódy

AppCoordinator: Remove unnecessary variable assignment

Soomin Lee 6 rokov pred
rodič
commit
3792ba59f8
1 zmenil súbory, kde vykonal 1 pridanie a 2 odobranie
  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))
     }
 }