Skip to content

Commit d88e427

Browse files
committed
Enable progressive mode
1 parent 461473e commit d88e427

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

binary-compatibility-validator/reference-public-api/kotlinx-coroutines-core.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,6 @@ public final class kotlinx/coroutines/channels/ClosedSendChannelException : java
628628
}
629629

630630
public final class kotlinx/coroutines/channels/ConflatedBroadcastChannel : kotlinx/coroutines/channels/BroadcastChannel {
631-
public static final field Companion Lkotlinx/coroutines/channels/ConflatedBroadcastChannel$Companion;
632631
public fun <init> ()V
633632
public fun <init> (Ljava/lang/Object;)V
634633
public fun cancel (Ljava/lang/Throwable;)Z

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ configure(subprojects.findAll { !unpublished.contains(it.name) }) {
195195
"-Xuse-experimental=kotlin.experimental.ExperimentalTypeInference",
196196
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
197197
"-Xuse-experimental=kotlinx.coroutines.ObsoleteCoroutinesApi",
198-
"-Xuse-experimental=kotlinx.coroutines.InternalCoroutinesApi"]
199-
198+
"-Xuse-experimental=kotlinx.coroutines.InternalCoroutinesApi",
199+
"-progressive"]
200200
}
201201
}
202202

common/kotlinx-coroutines-core-common/src/CoroutineExceptionHandler.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ internal fun handlerException(originalException: Throwable, thrownException: Thr
6565
*/
6666
@Suppress("FunctionName")
6767
public inline fun CoroutineExceptionHandler(crossinline handler: (CoroutineContext, Throwable) -> Unit): CoroutineExceptionHandler =
68-
object: AbstractCoroutineContextElement(CoroutineExceptionHandler), CoroutineExceptionHandler {
68+
object : AbstractCoroutineContextElement(CoroutineExceptionHandler), CoroutineExceptionHandler {
6969
override fun handleException(context: CoroutineContext, exception: Throwable) =
7070
handler.invoke(context, exception)
7171
}

gradle/publish-bintray.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ artifactory {
7777

7878
task publishDevelopSnapshot() {
7979
def branch = System.getenv('currentBranch')
80-
println "Current branch: $branch"
8180
if (branch == "develop") {
8281
dependsOn(":artifactoryPublish")
8382
}

0 commit comments

Comments
 (0)