mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-19 08:03:50 +02:00
Fix class keyword deprecation warnings everywhere!
Using 'class' keyword for protocol inheritance is deprecated; use 'AnyObject' instead
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
|
||||
import Foundation
|
||||
|
||||
protocol SecretsSetupRecoveryKeyCoordinatorDelegate: class {
|
||||
protocol SecretsSetupRecoveryKeyCoordinatorDelegate: AnyObject {
|
||||
func secretsSetupRecoveryKeyCoordinatorDidComplete(_ coordinator: SecretsSetupRecoveryKeyCoordinatorType)
|
||||
func secretsSetupRecoveryKeyCoordinatorDidFailed(_ coordinator: SecretsSetupRecoveryKeyCoordinatorType)
|
||||
func secretsSetupRecoveryKeyCoordinatorDidCancel(_ coordinator: SecretsSetupRecoveryKeyCoordinatorType)
|
||||
|
||||
@@ -18,11 +18,11 @@
|
||||
|
||||
import Foundation
|
||||
|
||||
protocol SecretsSetupRecoveryKeyViewModelViewDelegate: class {
|
||||
protocol SecretsSetupRecoveryKeyViewModelViewDelegate: AnyObject {
|
||||
func secretsSetupRecoveryKeyViewModel(_ viewModel: SecretsSetupRecoveryKeyViewModelType, didUpdateViewState viewSate: SecretsSetupRecoveryKeyViewState)
|
||||
}
|
||||
|
||||
protocol SecretsSetupRecoveryKeyViewModelCoordinatorDelegate: class {
|
||||
protocol SecretsSetupRecoveryKeyViewModelCoordinatorDelegate: AnyObject {
|
||||
func secretsSetupRecoveryKeyViewModelDidComplete(_ viewModel: SecretsSetupRecoveryKeyViewModelType)
|
||||
func secretsSetupRecoveryKeyViewModelDidFailed(_ viewModel: SecretsSetupRecoveryKeyViewModelType)
|
||||
func secretsSetupRecoveryKeyViewModelDidCancel(_ viewModel: SecretsSetupRecoveryKeyViewModelType)
|
||||
|
||||
Reference in New Issue
Block a user