File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
kotlinx-coroutines-core/common/src Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import kotlinx.coroutines.selects.*
17
17
* be safely invoked from concurrent coroutines without external synchronization.
18
18
*/
19
19
@OptIn(ExperimentalSubclassOptIn ::class )
20
- @SubclassOptInRequired(markerClass = InternalForInheritanceCoroutinesApi ::class )
20
+ @SubclassOptInRequired(InternalForInheritanceCoroutinesApi ::class )
21
21
public interface CompletableDeferred <T > : Deferred <T > {
22
22
/* *
23
23
* Completes this deferred value with a given [value]. The result is `true` if this deferred was
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ package kotlinx.coroutines
11
11
* as new methods might be added to this interface in the future, but is stable for use.
12
12
*/
13
13
@OptIn(ExperimentalSubclassOptIn ::class )
14
- @SubclassOptInRequired(markerClass = InternalForInheritanceCoroutinesApi ::class )
14
+ @SubclassOptInRequired(InternalForInheritanceCoroutinesApi ::class )
15
15
public interface CompletableJob : Job {
16
16
/* *
17
17
* Completes this job. The result is `true` if this job was completed as a result of this invocation and
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import kotlinx.coroutines.selects.*
28
28
* be safely invoked from concurrent coroutines without external synchronization.
29
29
*/
30
30
@OptIn(ExperimentalSubclassOptIn ::class )
31
- @SubclassOptInRequired(markerClass = InternalForInheritanceCoroutinesApi ::class )
31
+ @SubclassOptInRequired(InternalForInheritanceCoroutinesApi ::class )
32
32
public interface Deferred <out T > : Job {
33
33
34
34
/* *
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ import kotlin.jvm.*
101
101
* be safely invoked from concurrent coroutines without external synchronization.
102
102
*/
103
103
@OptIn(ExperimentalSubclassOptIn ::class )
104
- @SubclassOptInRequired(markerClass = InternalForInheritanceCoroutinesApi ::class )
104
+ @SubclassOptInRequired(InternalForInheritanceCoroutinesApi ::class )
105
105
public interface Job : CoroutineContext .Element {
106
106
/* *
107
107
* Key for [Job] instance in the coroutine context.
You can’t perform that action at this time.
0 commit comments