From c88dc186442dd17844b867c3779ae7dcb7af3e66 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sun, 29 Sep 2024 21:58:39 -0700 Subject: [PATCH] Make iOS AppDelegate final. --- iOS/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/AppDelegate.swift b/iOS/AppDelegate.swift index 1ffee87c2..ae3c6c854 100644 --- a/iOS/AppDelegate.swift +++ b/iOS/AppDelegate.swift @@ -19,7 +19,7 @@ import libxml2 @MainActor var appDelegate: AppDelegate! @UIApplicationMain -class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, UnreadCountProvider { +final class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, UnreadCountProvider { private var bgTaskDispatchQueue = DispatchQueue.init(label: "BGTaskScheduler")