Skip to content

Commit

Permalink
fix: java kotlin wrapper runBlocking
Browse files Browse the repository at this point in the history
  • Loading branch information
Suqatri committed Jul 9, 2024
1 parent 28de7a5 commit e6a480a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class CloudJKWrapper {
}

@JvmStatic
fun <T> runBlocking(block: suspend () -> T): T = runBlocking {
fun <T> runBlocking(block: suspend () -> T): T = kotlinx.coroutines.runBlocking {
block()
}

Expand Down

0 comments on commit e6a480a

Please sign in to comment.