@@ -91,7 +91,7 @@ struct SignatureValidation {
9191 fileSystem: FileSystem ,
9292 observabilityScope: ObservabilityScope ,
9393 callbackQueue: DispatchQueue ,
94- completion: @Sendable @ escaping ( Result < SigningEntity ? , Error > ) -> Void
94+ completion: @escaping @ Sendable ( Result < SigningEntity ? , Error > ) -> Void
9595 ) {
9696 guard !self . skipSignatureValidation else {
9797 return completion ( . success( . none) )
@@ -138,7 +138,7 @@ struct SignatureValidation {
138138 fileSystem: FileSystem ,
139139 observabilityScope: ObservabilityScope ,
140140 callbackQueue: DispatchQueue ,
141- completion: @Sendable @ escaping ( Result < SigningEntity ? , Error > ) -> Void
141+ completion: @escaping @ Sendable ( Result < SigningEntity ? , Error > ) -> Void
142142 ) {
143143 do {
144144 let versionMetadata = try self . versionMetadataProvider ( package , version)
@@ -240,7 +240,7 @@ struct SignatureValidation {
240240 configuration: RegistryConfiguration . Security . Signing ,
241241 fileSystem: FileSystem ,
242242 observabilityScope: ObservabilityScope ,
243- completion: @Sendable @ escaping ( Result < SigningEntity ? , Error > ) -> Void
243+ completion: @escaping @ Sendable ( Result < SigningEntity ? , Error > ) -> Void
244244 ) {
245245 Task {
246246 do {
@@ -353,7 +353,7 @@ struct SignatureValidation {
353353 fileSystem: FileSystem ,
354354 observabilityScope: ObservabilityScope ,
355355 callbackQueue: DispatchQueue ,
356- completion: @Sendable @ escaping ( Result < SigningEntity ? , Error > ) -> Void
356+ completion: @escaping @ Sendable ( Result < SigningEntity ? , Error > ) -> Void
357357 ) {
358358 guard !self . skipSignatureValidation else {
359359 return completion ( . success( . none) )
@@ -402,7 +402,7 @@ struct SignatureValidation {
402402 fileSystem: FileSystem ,
403403 observabilityScope: ObservabilityScope ,
404404 callbackQueue: DispatchQueue ,
405- completion: @Sendable @ escaping ( Result < SigningEntity ? , Error > ) -> Void
405+ completion: @escaping @ Sendable ( Result < SigningEntity ? , Error > ) -> Void
406406 ) {
407407 let manifestName = toolsVersion. map { " Package@swift- \( $0) .swift " } ?? Manifest . filename
408408
@@ -506,7 +506,7 @@ struct SignatureValidation {
506506 configuration: RegistryConfiguration . Security . Signing ,
507507 fileSystem: FileSystem ,
508508 observabilityScope: ObservabilityScope ,
509- completion: @Sendable @ escaping ( Result < SigningEntity ? , Error > ) -> Void
509+ completion: @escaping @ Sendable ( Result < SigningEntity ? , Error > ) -> Void
510510 ) {
511511 Task {
512512 do {
@@ -577,7 +577,7 @@ struct SignatureValidation {
577577 signatureFormat: SignatureFormat ,
578578 configuration: RegistryConfiguration . Security . Signing ,
579579 fileSystem: FileSystem ,
580- completion: @Sendable @ escaping ( Result < SigningEntity ? , Error > ) -> Void
580+ completion: @escaping @ Sendable ( Result < SigningEntity ? , Error > ) -> Void
581581 ) {
582582 Task {
583583 do {
0 commit comments