Commit 46d1e4c7 by Dima Bart

Fix new lines at end of files.

parent 47222cae
...@@ -425,6 +425,8 @@ ...@@ -425,6 +425,8 @@
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
INFOPLIST_FILE = "Sample App Customers/Info.plist"; INFOPLIST_FILE = "Sample App Customers/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.shopify.Sample-App-Customers"; PRODUCT_BUNDLE_IDENTIFIER = "com.shopify.Sample-App-Customers";
...@@ -436,6 +438,8 @@ ...@@ -436,6 +438,8 @@
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
INFOPLIST_FILE = "Sample App Customers/Info.plist"; INFOPLIST_FILE = "Sample App Customers/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.shopify.Sample-App-Customers"; PRODUCT_BUNDLE_IDENTIFIER = "com.shopify.Sample-App-Customers";
......
...@@ -87,4 +87,4 @@ extension AccountViewController: AuthenticationDelegate { ...@@ -87,4 +87,4 @@ extension AccountViewController: AuthenticationDelegate {
func authenticationDidFailWithError(error: NSError?) { func authenticationDidFailWithError(error: NSError?) {
UIAlertView(title: "Error", message: error?.localizedDescription, delegate: nil, cancelButtonTitle: "OK").show() UIAlertView(title: "Error", message: error?.localizedDescription, delegate: nil, cancelButtonTitle: "OK").show()
} }
} }
\ No newline at end of file
...@@ -52,4 +52,3 @@ class AppDelegate: UIResponder, UIApplicationDelegate { ...@@ -52,4 +52,3 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
return true return true
} }
} }
...@@ -30,4 +30,4 @@ import Buy ...@@ -30,4 +30,4 @@ import Buy
protocol AuthenticationDelegate: class { protocol AuthenticationDelegate: class {
func authenticationDidSucceedForCustomer(customer: BUYCustomer, withToken token: String) func authenticationDidSucceedForCustomer(customer: BUYCustomer, withToken token: String)
func authenticationDidFailWithError(error: NSError?) func authenticationDidFailWithError(error: NSError?)
} }
\ No newline at end of file
...@@ -35,4 +35,4 @@ extension BUYClient { ...@@ -35,4 +35,4 @@ extension BUYClient {
} }
fatalError("Could not retrieve shared BUYClient") fatalError("Could not retrieve shared BUYClient")
} }
} }
\ No newline at end of file
...@@ -111,4 +111,4 @@ extension BUYOrder { ...@@ -111,4 +111,4 @@ extension BUYOrder {
items.appendContentsOf(self.unfulfilledLineItems) items.appendContentsOf(self.unfulfilledLineItems)
return items return items
} }
} }
\ No newline at end of file
...@@ -106,4 +106,4 @@ class SignupViewController: UITableViewController { ...@@ -106,4 +106,4 @@ class SignupViewController: UITableViewController {
} }
tableView.deselectRowAtIndexPath(indexPath, animated: true) tableView.deselectRowAtIndexPath(indexPath, animated: true)
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment