瀏覽代碼

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))
     }
 }