Skip to content

Commit 282bf0a

Browse files
authored
Merge pull request #13 from uber/execution-inheritance
Update AbstractTask to be open for inheritance
2 parents 5ce5048 + 24e3d07 commit 282bf0a

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)