diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2022-03-28 14:40:05 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2022-03-31 14:39:43 +0200 |
| commit | 3eb84b08a61e665852048b33ea7204b224fda0fb (patch) | |
| tree | e604420e8178886c3e767482fb2d336cb0cd16fe /ios | |
| parent | 5507c5f48b9bed77e795d933382b778a79c51cf0 (diff) | |
| download | mullvadvpn-3eb84b08a61e665852048b33ea7204b224fda0fb.tar.xz mullvadvpn-3eb84b08a61e665852048b33ea7204b224fda0fb.zip | |
AsyncOperation: drop operationDidFinish()
Diffstat (limited to 'ios')
| -rw-r--r-- | ios/MullvadVPN/Operations/AsyncOperation.swift | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ios/MullvadVPN/Operations/AsyncOperation.swift b/ios/MullvadVPN/Operations/AsyncOperation.swift index cd2ce01702..62d8968180 100644 --- a/ios/MullvadVPN/Operations/AsyncOperation.swift +++ b/ios/MullvadVPN/Operations/AsyncOperation.swift @@ -84,17 +84,11 @@ class AsyncOperation: Operation { didChangeValue(for: \.isFinished) stateLock.unlock() - - operationDidFinish() } else { stateLock.unlock() } } - func operationDidFinish() { - // Override in subclasses - } - private func setExecuting(_ value: Bool) { willChangeValue(for: \.isExecuting) _isExecuting = value |
