Remove unnecessary semicolon (#327)
Summary: I updated to remove unnecessary semicolon in AppDelegate.swift, SampleSwift Pull Request resolved: https://github.com/facebook/flipper/pull/327 Reviewed By: priteshrnandgaonkar Differential Revision: D13121242 Pulled By: jknoxville fbshipit-source-id: 9e848b2def84c5b969c9167abc556fe18ccecdbc
This commit is contained in:
committed by
Facebook Github Bot
parent
e380fa7a08
commit
67dd1fc596
@@ -27,8 +27,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
|
||||
let mainViewController = storyboard.instantiateViewController(withIdentifier: "MainViewController")
|
||||
let navigationController = UINavigationController(rootViewController: mainViewController)
|
||||
|
||||
navigationController.navigationBar.topItem?.title = "SampleFlipper";
|
||||
navigationController.navigationBar.isTranslucent = false;
|
||||
navigationController.navigationBar.topItem?.title = "SampleFlipper"
|
||||
navigationController.navigationBar.isTranslucent = false
|
||||
|
||||
window?.rootViewController = navigationController
|
||||
window?.makeKeyAndVisible()
|
||||
|
||||
Reference in New Issue
Block a user