Skip to content

Commit 576ebcf

Browse files
committed
chore: update to kotlin 1.9.0
1 parent ada96e4 commit 576ebcf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ forgeVersion=14.23.5.2860
1010
mappingsChannel=stable
1111
mappingsVersion=39-1.12
1212

13-
kotlinVersion=1.8.21
14-
kotlinxCoroutinesVersion=1.7.1
13+
kotlinVersion=1.9.0
14+
kotlinxCoroutinesVersion=1.7.2

src/main/kotlin/com/lambda/client/util/threads/CoroutineUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import kotlinx.coroutines.*
55
/**
66
* Single thread scope to use in Lambda
77
*/
8-
@OptIn(DelicateCoroutinesApi::class)
8+
@OptIn(DelicateCoroutinesApi::class, ExperimentalCoroutinesApi::class)
99
val mainScope = CoroutineScope(newSingleThreadContext("Lambda Main"))
1010

1111
/**

0 commit comments

Comments
 (0)