ソースを参照

AppCoordinator: Remove unnecessary variable assignment

Soomin Lee 6 年 前
コミット
3792ba59f8
1 ファイル変更1 行追加2 行削除
  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))
     }
 }