We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 518cdfe + 576ebcf commit d49d568Copy full SHA for d49d568
gradle.properties
@@ -10,5 +10,5 @@ forgeVersion=14.23.5.2860
10
mappingsChannel=stable
11
mappingsVersion=39-1.12
12
13
-kotlinVersion=1.8.21
14
-kotlinxCoroutinesVersion=1.7.1
+kotlinVersion=1.9.0
+kotlinxCoroutinesVersion=1.7.2
src/main/kotlin/com/lambda/client/util/threads/CoroutineUtils.kt
@@ -5,7 +5,7 @@ import kotlinx.coroutines.*
5
/**
6
* Single thread scope to use in Lambda
7
*/
8
-@OptIn(DelicateCoroutinesApi::class)
+@OptIn(DelicateCoroutinesApi::class, ExperimentalCoroutinesApi::class)
9
val mainScope = CoroutineScope(newSingleThreadContext("Lambda Main"))
0 commit comments