Fix some concurrency warnings.

This commit is contained in:
Brent Simmons 2024-04-20 15:22:57 -07:00
parent 55e3e20be1
commit 2488265012
1 changed files with 2 additions and 2 deletions

View File

@ -133,13 +133,13 @@ import Core
// MARK: - Hashable
public func hash(into hasher: inout Hasher) {
nonisolated public func hash(into hasher: inout Hasher) {
hasher.combine(folderID)
}
// MARK: - Equatable
static public func ==(lhs: Folder, rhs: Folder) -> Bool {
nonisolated static public func ==(lhs: Folder, rhs: Folder) -> Bool {
return lhs === rhs
}
}