summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN/Operations/OperationObserver.swift
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2021-09-14 13:59:01 +0200
committerAndrej Mihajlov <and@mullvad.net>2021-09-15 10:54:31 +0200
commit76dd2c99bf92d608022efbf05ffcbfebda43e0c1 (patch)
tree8cccb074a033089ac531e425f4a825df62b616c3 /ios/MullvadVPN/Operations/OperationObserver.swift
parente553d10b869c46e7ab922b86c32f4bd016e4fdac (diff)
downloadmullvadvpn-76dd2c99bf92d608022efbf05ffcbfebda43e0c1.tar.xz
mullvadvpn-76dd2c99bf92d608022efbf05ffcbfebda43e0c1.zip
Operations: simplify AsyncOperation, remove advanced features
Diffstat (limited to 'ios/MullvadVPN/Operations/OperationObserver.swift')
-rw-r--r--ios/MullvadVPN/Operations/OperationObserver.swift18
1 files changed, 0 insertions, 18 deletions
diff --git a/ios/MullvadVPN/Operations/OperationObserver.swift b/ios/MullvadVPN/Operations/OperationObserver.swift
deleted file mode 100644
index a7d3ea3aa3..0000000000
--- a/ios/MullvadVPN/Operations/OperationObserver.swift
+++ /dev/null
@@ -1,18 +0,0 @@
-//
-// OperationObserver.swift
-// MullvadVPN
-//
-// Created by pronebird on 06/07/2020.
-// Copyright © 2020 Mullvad VPN AB. All rights reserved.
-//
-
-import Foundation
-
-protocol OperationObserver {
- associatedtype OperationType: OperationProtocol
-
- func operationWillExecute(_ operation: OperationType)
- func operationWillFinish(_ operation: OperationType)
- func operationDidFinish(_ operation: OperationType)
-}
-