Skip to content

Commit fcd9316

Browse files
committed
private val KEEP_ALIVE
1 parent fa612f9 commit fcd9316

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/src/main/kotlin/kotlinx/coroutines/experimental/Scheduled.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import java.util.concurrent.ScheduledThreadPoolExecutor
2121
import java.util.concurrent.TimeUnit
2222
import kotlin.coroutines.experimental.startCoroutine
2323

24-
val KEEP_ALIVE = java.lang.Long.getLong("kotlinx.coroutines.ScheduledExecutor.keepAlive", 1000L)
24+
private val KEEP_ALIVE = java.lang.Long.getLong("kotlinx.coroutines.ScheduledExecutor.keepAlive", 1000L)
2525

2626
internal val scheduledExecutor by lazy<ScheduledExecutorService> {
2727
ScheduledThreadPoolExecutor(1) { r ->

0 commit comments

Comments
 (0)