summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2019-12-05 13:20:27 +0100
committerAndrej Mihajlov <and@mullvad.net>2019-12-05 16:05:10 +0100
commit46f0be45b46f6b74ebf49a86084470fd6b3f040b (patch)
treeb5b32ef35b2717ad16e013ac960b3681eb19002e
parentbfcf230077617d2dbf2fe968b1547e58c769e059 (diff)
downloadmullvadvpn-46f0be45b46f6b74ebf49a86084470fd6b3f040b.tar.xz
mullvadvpn-46f0be45b46f6b74ebf49a86084470fd6b3f040b.zip
Remove WeakBox
-rw-r--r--ios/MullvadVPN/WeakBox.swift17
1 files changed, 0 insertions, 17 deletions
diff --git a/ios/MullvadVPN/WeakBox.swift b/ios/MullvadVPN/WeakBox.swift
deleted file mode 100644
index d8a2a86e8b..0000000000
--- a/ios/MullvadVPN/WeakBox.swift
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-// WeakBox.swift
-// MullvadVPN
-//
-// Created by pronebird on 29/05/2019.
-// Copyright © 2019 Amagicom AB. All rights reserved.
-//
-
-import Foundation
-
-final class WeakBox<T: AnyObject> {
- weak var unboxed: T?
-
- init(_ value: T) {
- unboxed = value
- }
-}