Skip to content

Commit

Permalink
Update IJP 233 (#267)
Browse files Browse the repository at this point in the history
* Update IJP to 233.11799.241

* Suppress InjectDispatcher warning in demo
  • Loading branch information
rock3r authored Dec 11, 2023
1 parent 2e45816 commit 9bd5ba6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ composeDesktop = "1.5.11"
detekt = "1.23.1"
dokka = "1.8.20"
idea232 = "232.10227.8"
idea233 = "233.11799.196-EAP-SNAPSHOT"
idea233 = "233.11799.241"
ideaGradlePlugin = "1.16.0"
jna = "5.13.0"
kotlin = "1.8.21"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ fun SelectableLazyColumnSample() {
}

LaunchedEffect(Unit) {
@Suppress("InjectDispatcher") // Ok for demo code
launch(Dispatchers.Default) {
listOfItems = List(5_000_000) { "Item $it" }
}
Expand Down

0 comments on commit 9bd5ba6

Please sign in to comment.