Fix SwiftLint warnings

This commit is contained in:
SBiOSoftWhare
2019-02-27 10:07:51 +01:00
parent a9fdb0a6ef
commit 103aaa3a0a
16 changed files with 86 additions and 126 deletions
@@ -133,12 +133,12 @@ final class KeyBackupSetupIntroViewController: UIViewController {
private func showSkipAlert() {
let alertController = UIAlertController(title: VectorL10n.keyBackupSetupSkipAlertTitle,
message: VectorL10n.keyBackupSetupSkipAlertMessage,
preferredStyle:.alert)
preferredStyle: .alert)
alertController.addAction(UIAlertAction(title: VectorL10n.continue, style: .cancel, handler: { action in
}))
alertController.addAction(UIAlertAction(title: VectorL10n.keyBackupSetupSkipAlertSkipAction , style: .default, handler: { action in
alertController.addAction(UIAlertAction(title: VectorL10n.keyBackupSetupSkipAlertSkipAction, style: .default, handler: { action in
self.delegate?.keyBackupSetupIntroViewControllerDidCancel(self)
}))