Skip to content

Commit 6a041b5

Browse files
committed
skip
1 parent 2116eaa commit 6a041b5

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

core-kotlin-modules/core-kotlin-concurrency-3/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
<version>1.8.1</version>
4040
<scope>runtime</scope>
4141
</dependency>
42-
43-
44-
45-
4642
</dependencies>
4743
<repositories>
4844
<repository>

core-kotlin-modules/core-kotlin-concurrency-3/src/test/java/com/baeldung/singleRxJavaToCoroutineDeferred/SingleRxJavaToCoroutineDeferredUnitTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class SingleRxJavaToCoroutineDeferredUnitTest {
158158
return coroutineScope {
159159
async {
160160
suspendCancellableCoroutine { continuation ->
161-
this@toDeferredWithsuspendCancellableCoroutine.subscribe({ result ->
161+
this@toDeferredWithSuspendCancellableCoroutine.subscribe({ result ->
162162
val deferredResult = CompletableDeferred<T>().apply {
163163
complete(result)
164164
continuation.resume(result)

0 commit comments

Comments
 (0)