Remove some no-longer-needed nonisolated(unsafe) marks for Loggers. (Not needed in Xcode 16.2b1.)

This commit is contained in:
Brent Simmons
2024-10-30 21:57:06 -07:00
parent 5bbffd8886
commit 3f0f2fc775
8 changed files with 8 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ public final class HTMLMetadataDownloader: Sendable {
static let shared = HTMLMetadataDownloader()
nonisolated(unsafe) private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "HTMLMetadataDownloader")
private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "HTMLMetadataDownloader")
private let debugLoggingEnabled = false
private let cache = HTMLMetadataCache()
private let attemptDatesLock = OSAllocatedUnfairLock(initialState: [String: Date]())