From 600176e6bcf9627a57e14b5468be6a7d7bf051fd Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 1 Feb 2025 19:43:44 -0800 Subject: [PATCH] Remove some unused imports. Improve some formatting. --- iOS/AppDelegate.swift | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/iOS/AppDelegate.swift b/iOS/AppDelegate.swift index 90507981d..651d27288 100644 --- a/iOS/AppDelegate.swift +++ b/iOS/AppDelegate.swift @@ -7,20 +7,17 @@ // import UIKit -import RSCore -import RSWeb -import Account import BackgroundTasks import os -import Secrets -import WidgetKit +import RSCore +import Account @UIApplicationMain final class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, UnreadCountProvider { var window: UIWindow? - private var bgTaskDispatchQueue = DispatchQueue.init(label: "BGTaskScheduler") + private var bgTaskDispatchQueue = DispatchQueue.init(label: "BGTaskScheduler") private var waitBackgroundUpdateTask = UIBackgroundTaskIdentifier.invalid private var syncBackgroundUpdateTask = UIBackgroundTaskIdentifier.invalid @@ -384,7 +381,7 @@ private extension AppDelegate { } } -// MARK: Background Tasks +// MARK: - Background Tasks private extension AppDelegate { @@ -445,7 +442,7 @@ private extension AppDelegate { } } -// Handle Notification Actions +// MARK: - Handle Notification Actions private extension AppDelegate {