Skip to content

Commit

Permalink
Fix a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gibachan committed Dec 28, 2024
1 parent 6a7cdaf commit 64b7eea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/LicensePlistCore/ResultOperation.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Foundation
import LoggerAPI

public class ResultOperation<T, E: Error>: Operation {
public class ResultOperation<T, E: Error>: Operation, @unchecked Sendable {
typealias ResultType = Result<T, E>
var result: ResultType?
let closure: ((ResultOperation) -> ResultType)
Expand Down

0 comments on commit 64b7eea

Please sign in to comment.