Remove MainActor annotation from FeedFinder — it’s not needed.

This commit is contained in:
Brent Simmons 2024-08-05 21:35:11 -07:00
parent 82fef8c237
commit 65a18129ca
1 changed files with 3 additions and 3 deletions

View File

@ -13,11 +13,11 @@ import Web
import CommonErrors
import os.log
@MainActor public final class FeedFinder {
public final class FeedFinder {
private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "FeedFinder")
nonisolated(unsafe) private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "FeedFinder")
@MainActor public static func find(url: URL) async throws -> Set<FeedSpecifier> {
public static func find(url: URL) async throws -> Set<FeedSpecifier> {
var downloadData: DownloadData?