Merge pull request #4542 from vector-im/doug/fix_warnings

Fix warnings
This commit is contained in:
Doug
2021-07-13 11:07:47 +01:00
committed by GitHub
138 changed files with 190 additions and 180 deletions
@@ -16,7 +16,7 @@
import Foundation
protocol SecretsRecoveryWithKeyCoordinatorDelegate: class {
protocol SecretsRecoveryWithKeyCoordinatorDelegate: AnyObject {
func secretsRecoveryWithKeyCoordinatorDidRecover(_ coordinator: SecretsRecoveryWithKeyCoordinatorType)
func secretsRecoveryWithKeyCoordinatorDidCancel(_ coordinator: SecretsRecoveryWithKeyCoordinatorType)
func secretsRecoveryWithKeyCoordinatorWantsToResetSecrets(_ viewModel: SecretsRecoveryWithKeyCoordinatorType)
@@ -16,11 +16,11 @@
import Foundation
protocol SecretsRecoveryWithKeyViewModelViewDelegate: class {
protocol SecretsRecoveryWithKeyViewModelViewDelegate: AnyObject {
func secretsRecoveryWithKeyViewModel(_ viewModel: SecretsRecoveryWithKeyViewModelType, didUpdateViewState viewSate: SecretsRecoveryWithKeyViewState)
}
protocol SecretsRecoveryWithKeyViewModelCoordinatorDelegate: class {
protocol SecretsRecoveryWithKeyViewModelCoordinatorDelegate: AnyObject {
func secretsRecoveryWithKeyViewModelDidRecover(_ viewModel: SecretsRecoveryWithKeyViewModelType)
func secretsRecoveryWithKeyViewModelDidCancel(_ viewModel: SecretsRecoveryWithKeyViewModelType)
func secretsRecoveryWithKeyViewModelWantsToResetSecrets(_ viewModel: SecretsRecoveryWithKeyViewModelType)