aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/macOS/Application.swift
diff options
context:
space:
mode:
Diffstat (limited to 'WireGuard/WireGuard/UI/macOS/Application.swift')
-rw-r--r--WireGuard/WireGuard/UI/macOS/Application.swift19
1 files changed, 0 insertions, 19 deletions
diff --git a/WireGuard/WireGuard/UI/macOS/Application.swift b/WireGuard/WireGuard/UI/macOS/Application.swift
deleted file mode 100644
index 0ce274a..0000000
--- a/WireGuard/WireGuard/UI/macOS/Application.swift
+++ /dev/null
@@ -1,19 +0,0 @@
-// SPDX-License-Identifier: MIT
-// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved.
-
-import Cocoa
-
-class Application: NSApplication {
-
- private var appDelegate: AppDelegate? //swiftlint:disable:this weak_delegate
-
- override init() {
- super.init()
- appDelegate = AppDelegate() // Keep a strong reference to the app delegate
- delegate = appDelegate // Set delegate before app.run() gets called in NSApplicationMain()
- }
-
- required init?(coder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
-}