Skip to content

Commit 3d1770b

Browse files
committed
SelectBuilder shall not extend CoroutineContext
1 parent c0e19f8 commit 3d1770b

File tree

1 file changed

+1
-1
lines changed
  • kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/selects

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/selects/Select.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import kotlin.coroutines.experimental.intrinsics.suspendCoroutineOrReturn
2929
/**
3030
* Scope for [select] invocation.
3131
*/
32-
public interface SelectBuilder<in R> : CoroutineScope {
32+
public interface SelectBuilder<in R> {
3333
/**
3434
* Clause for [Job.join] suspending function that selects the given [block] when the job is complete.
3535
* This clause never fails, even if the job completes exceptionally.

0 commit comments

Comments
 (0)