Skip to content

Commit 24e3d07

Browse files
committed
Update AbstractTask to be open for inheritance
1 parent 5ce5048 commit 24e3d07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Concurrency/Executor/Task.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public protocol Task {
3939
// while allowing the internal executor implementations to operate on the
4040
// non-generic, type-erased `Task` protocol, since Swift does not support
4141
// wildcard generics.
42-
public class AbstractTask<ResultType>: Task {
42+
open class AbstractTask<ResultType>: Task {
4343

4444
/// Execute this task without any type information.
4545
///

0 commit comments

Comments
 (0)