Fix naming of Repository -> Service, Impl -> Type

This commit is contained in:
langleyd
2021-07-02 10:39:27 +01:00
parent 8b52cda3f7
commit 9c42cb1aeb
6 changed files with 14 additions and 14 deletions
@@ -60,7 +60,7 @@ final class RoomNotificationSettingsViewController: UIViewController {
}
}
private var viewState: RoomNotificationSettingsViewState!
private var viewState: RoomNotificationSettingsViewStateType!
// MARK: - Setup
@@ -129,7 +129,7 @@ final class RoomNotificationSettingsViewController: UIViewController {
navigationItem.rightBarButtonItem = doneBarButtonItem
}
private func render(viewState: RoomNotificationSettingsViewState) {
private func render(viewState: RoomNotificationSettingsViewStateType) {
if viewState.saving {
activityPresenter.presentActivityIndicator(on: view, animated: true)
@@ -261,7 +261,7 @@ extension RoomNotificationSettingsViewController: UITableViewDelegate {
// MARK: - RoomNotificationSettingsViewModelViewDelegate
extension RoomNotificationSettingsViewController: RoomNotificationSettingsViewModelViewDelegate {
func roomNotificationSettingsViewModel(_ viewModel: RoomNotificationSettingsViewModelType, didUpdateViewState viewSate: RoomNotificationSettingsViewState) {
func roomNotificationSettingsViewModel(_ viewModel: RoomNotificationSettingsViewModelType, didUpdateViewState viewSate: RoomNotificationSettingsViewStateType) {
render(viewState: viewSate)
}
}