Skip to content

Commit

Permalink
replace deprecated methods
Browse files Browse the repository at this point in the history
  • Loading branch information
mi-sts committed May 24, 2024
1 parent 16c78f0 commit 056bbab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/solve/scene/model/Scene.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ class Scene(

private val planesLayersStorage = layerSettings.filter {
it is LayerSettings.PlaneLayerSettings
}.reversed().toMutableList()
}.toMutableList().asReversed()
private val nonPlanesLayersStorage = layerSettings.filterNot {
it is LayerSettings.PlaneLayerSettings
}.reversed().toMutableList()
}.toMutableList().asReversed()

private val changedCallbacks = mutableListOf<() -> Unit>()

Expand Down

0 comments on commit 056bbab

Please sign in to comment.