mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-20 16:42:44 +02:00
Fix class keyword deprecation warnings everywhere!
Using 'class' keyword for protocol inheritance is deprecated; use 'AnyObject' instead
This commit is contained in:
+1
-1
@@ -18,7 +18,7 @@
|
||||
|
||||
import Foundation
|
||||
|
||||
protocol RoomCreationEventsModalCoordinatorDelegate: class {
|
||||
protocol RoomCreationEventsModalCoordinatorDelegate: AnyObject {
|
||||
func roomCreationEventsModalCoordinatorDidTapClose(_ coordinator: RoomCreationEventsModalCoordinatorType)
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -18,11 +18,11 @@
|
||||
|
||||
import Foundation
|
||||
|
||||
protocol RoomCreationEventsModalViewModelViewDelegate: class {
|
||||
protocol RoomCreationEventsModalViewModelViewDelegate: AnyObject {
|
||||
func roomCreationEventsModalViewModel(_ viewModel: RoomCreationEventsModalViewModelType, didUpdateViewState viewSate: RoomCreationEventsModalViewState)
|
||||
}
|
||||
|
||||
protocol RoomCreationEventsModalViewModelCoordinatorDelegate: class {
|
||||
protocol RoomCreationEventsModalViewModelCoordinatorDelegate: AnyObject {
|
||||
func roomCreationEventsModalViewModelDidTapClose(_ viewModel: RoomCreationEventsModalViewModelType)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user