@@ -651,7 +651,7 @@ extension Task where Failure == Never {
651
651
@_alwaysEmitIntoClient
652
652
@available ( * , unavailable, message: " Unavailable in task-to-thread concurrency model " )
653
653
public init (
654
- name: String ? = nil ,
654
+ name: String ? ,
655
655
priority: TaskPriority ? = nil ,
656
656
@_inheritActorContext @_implicitSelfCapture operation: sending @escaping @isolated ( any) ( ) async -> Success
657
657
) {
@@ -662,7 +662,7 @@ extension Task where Failure == Never {
662
662
@_alwaysEmitIntoClient
663
663
@available ( SwiftStdlib 6 . 2 , * )
664
664
public init (
665
- name: String ? = nil ,
665
+ name: String ? ,
666
666
// TaskExecutor is unavailable in embedded
667
667
priority: TaskPriority ? = nil ,
668
668
@_inheritActorContext @_implicitSelfCapture operation: sending @escaping ( ) async -> Success
@@ -712,7 +712,7 @@ extension Task where Failure == Never {
712
712
@_alwaysEmitIntoClient
713
713
@available ( SwiftStdlib 6 . 2 , * )
714
714
public init (
715
- name: String ? = nil ,
715
+ name: String ? ,
716
716
priority: TaskPriority ? = nil ,
717
717
@_inheritActorContext @_implicitSelfCapture operation: sending @escaping @isolated ( any) ( ) async -> Success
718
718
) {
@@ -824,7 +824,7 @@ extension Task where Failure == Error {
824
824
@_alwaysEmitIntoClient
825
825
@available ( * , unavailable, message: " Unavailable in task-to-thread concurrency model " )
826
826
public init (
827
- name: String ? = nil ,
827
+ name: String ? ,
828
828
priority: TaskPriority ? = nil ,
829
829
@_inheritActorContext @_implicitSelfCapture operation: sending @escaping @isolated ( any) ( ) async throws -> Success
830
830
) {
@@ -835,7 +835,7 @@ extension Task where Failure == Error {
835
835
@_alwaysEmitIntoClient
836
836
@available ( SwiftStdlib 6 . 2 , * )
837
837
public init (
838
- name: String ? = nil ,
838
+ name: String ? ,
839
839
// TaskExecutor is unavailable in embedded
840
840
priority: TaskPriority ? = nil ,
841
841
@_inheritActorContext @_implicitSelfCapture operation: sending @escaping ( ) async throws -> Success
@@ -881,7 +881,7 @@ self._task = task
881
881
@_alwaysEmitIntoClient
882
882
@available ( SwiftStdlib 6 . 2 , * )
883
883
public init (
884
- name: String ? = nil ,
884
+ name: String ? ,
885
885
priority: TaskPriority ? = nil ,
886
886
@_inheritActorContext @_implicitSelfCapture operation: sending @escaping @isolated ( any) ( ) async throws -> Success
887
887
) {
@@ -991,7 +991,7 @@ extension Task where Failure == Never {
991
991
@_alwaysEmitIntoClient
992
992
@available ( * , unavailable, message: " Unavailable in task-to-thread concurrency model " )
993
993
public static func detached(
994
- name: String ? = nil ,
994
+ name: String ? ,
995
995
priority: TaskPriority ? = nil ,
996
996
operation: sending @escaping @isolated ( any) ( ) async -> Success
997
997
) -> Task < Success , Failure > {
@@ -1022,7 +1022,7 @@ extension Task where Failure == Never {
1022
1022
@discardableResult
1023
1023
@_alwaysEmitIntoClient
1024
1024
public static func detached(
1025
- name: String ? = nil ,
1025
+ name: String ? ,
1026
1026
priority: TaskPriority ? = nil ,
1027
1027
operation: sending @escaping @isolated ( any) ( ) async -> Success
1028
1028
) -> Task < Success , Failure > {
@@ -1132,7 +1132,7 @@ extension Task where Failure == Error {
1132
1132
@_alwaysEmitIntoClient
1133
1133
@available ( * , unavailable, message: " Unavailable in task-to-thread concurrency model " )
1134
1134
public static func detached(
1135
- name: String ? = nil ,
1135
+ name: String ? ,
1136
1136
priority: TaskPriority ? = nil ,
1137
1137
operation: sending @escaping @isolated ( any) ( ) async throws -> Success
1138
1138
) -> Task < Success , Failure > {
@@ -1164,7 +1164,7 @@ extension Task where Failure == Error {
1164
1164
@discardableResult
1165
1165
@_alwaysEmitIntoClient
1166
1166
public static func detached(
1167
- name: String ? = nil ,
1167
+ name: String ? ,
1168
1168
priority: TaskPriority ? = nil ,
1169
1169
operation: sending @escaping @isolated ( any) ( ) async throws -> Success
1170
1170
) -> Task < Success , Failure > {
0 commit comments