UserSessionsOverviewViewModelResult: Remove useless case.

This commit is contained in:
SBiOSoftWhare
2022-09-08 18:49:41 +02:00
parent cdc9b6210b
commit 776ce24957
2 changed files with 0 additions and 7 deletions
@@ -65,8 +65,6 @@ final class UserSessionsOverviewCoordinator: Coordinator, Presentable {
switch result {
case .cancel:
self.completion?()
case .loadData:
self.loadData()
case .showAllUnverifiedSessions:
self.showAllUnverifiedSessions()
case .showAllInactiveSessions:
@@ -102,10 +100,6 @@ final class UserSessionsOverviewCoordinator: Coordinator, Presentable {
loadingIndicator = nil
}
private func loadData() {
// TODO
}
private func showAllUnverifiedSessions() {
// TODO
}
@@ -22,7 +22,6 @@ import Foundation
enum UserSessionsOverviewViewModelResult {
case cancel
case loadData
case showAllUnverifiedSessions
case showAllInactiveSessions
case verifyCurrentSession