Skip to content

Commit 99c6ac7

Browse files
committed
Fixed package for internal stuff (SystemProps and LockFreeMPMCQueue)
1 parent 46a598e commit 99c6ac7

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
lines changed

core/kotlinx-coroutines-core/src/Builders.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
package kotlinx.coroutines.experimental
99

10-
import internal.*
10+
import kotlinx.coroutines.experimental.internal.*
1111
import java.util.*
1212
import java.util.concurrent.locks.*
1313
import kotlin.coroutines.experimental.*

core/kotlinx-coroutines-core/src/CoroutineContext.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
package kotlinx.coroutines.experimental
66

7-
import internal.*
7+
import kotlinx.coroutines.experimental.internal.*
8+
import kotlinx.coroutines.experimental.scheduling.*
89
import java.util.concurrent.atomic.*
910
import kotlin.coroutines.experimental.*
10-
import kotlinx.coroutines.experimental.scheduling.*
1111

1212
/**
1313
* Name of the property that control coroutine debugging. See [newCoroutineContext].

core/kotlinx-coroutines-core/src/internal/LockFreeMPMCQueue.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

5-
package internal
5+
package kotlinx.coroutines.experimental.internal
66

77
import kotlinx.atomicfu.*
88

core/kotlinx-coroutines-core/src/internal/SystemProps.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

5-
package internal
5+
package kotlinx.coroutines.experimental.internal
66

77
// number of processors at startup for consistent prop initialization
88
internal val AVAILABLE_PROCESSORS = Runtime.getRuntime().availableProcessors()

core/kotlinx-coroutines-core/src/scheduling/Tasks.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
package kotlinx.coroutines.experimental.scheduling
66

7-
import internal.*
87
import kotlinx.coroutines.experimental.*
8+
import kotlinx.coroutines.experimental.internal.*
99
import java.util.concurrent.*
1010

1111

core/kotlinx-coroutines-core/test/internal/LockFreeMPMCQueueTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
package kotlinx.coroutines.experimental.internal
66

7-
import internal.*
87
import kotlinx.coroutines.experimental.*
98
import org.junit.Test
109
import kotlin.test.*

core/kotlinx-coroutines-core/test/scheduling/SchedulerTestBase.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
package kotlinx.coroutines.experimental.scheduling
66

7-
import internal.*
87
import kotlinx.atomicfu.*
98
import kotlinx.coroutines.experimental.*
9+
import kotlinx.coroutines.experimental.internal.*
1010
import org.junit.*
1111
import kotlin.coroutines.experimental.*
1212

0 commit comments

Comments
 (0)