File tree 2 files changed +2
-2
lines changed
kotlinx-coroutines-core/jvm/src
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import kotlinx.coroutines.*
8
8
import java.util.concurrent.atomic.*
9
9
10
10
/* *
11
- * Atomic array with lock-free reads and synchronized modifications. It is logically has unbounded size,
11
+ * Atomic array with lock-free reads and synchronized modifications. It logically has an unbounded size,
12
12
* is implicitly filled with nulls, and is resized on updates as needed to grow.
13
13
*/
14
14
internal class ResizableAtomicArray <T >(initialLength : Int ) {
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ internal class CoroutineScheduler(
260
260
* works properly
261
261
*/
262
262
@JvmField
263
- val workers = ResizableAtomicArray <Worker ? >(corePoolSize + 1 )
263
+ val workers = ResizableAtomicArray <Worker >(corePoolSize + 1 )
264
264
265
265
/* *
266
266
* Long describing state of workers in this pool.
You can’t perform that action at this time.
0 commit comments