From 61949b237748167128ad7ca6867d5b743db5a762 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Fri, 21 Mar 2025 14:14:37 +0100 Subject: [PATCH] Undid temporary code change necessary for early versions of Kotlin 2. --- .../world/phantasmal/cell/list/SimpleListCell.kt | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/cell/src/commonMain/kotlin/world/phantasmal/cell/list/SimpleListCell.kt b/cell/src/commonMain/kotlin/world/phantasmal/cell/list/SimpleListCell.kt index ad127131..74c8e3e0 100644 --- a/cell/src/commonMain/kotlin/world/phantasmal/cell/list/SimpleListCell.kt +++ b/cell/src/commonMain/kotlin/world/phantasmal/cell/list/SimpleListCell.kt @@ -28,11 +28,7 @@ internal class SimpleListCell( override operator fun set(index: Int, element: E): E { checkIndex(index, elements.lastIndex) - // TODO: Use applyChange instead of MutationManager.changeDependency, once - // https://youtrack.jetbrains.com/issue/KT-69964 is fixed. - MutationManager.changeDependency { - emitDependencyInvalidated() - + applyChange { val removed = elements.set(index, element) finalizeChange( @@ -85,11 +81,7 @@ internal class SimpleListCell( override fun removeAt(index: Int): E { checkIndex(index, elements.lastIndex) - // TODO: Use applyChange instead of MutationManager.changeDependency, once - // https://youtrack.jetbrains.com/issue/KT-69964 is fixed. - MutationManager.changeDependency { - emitDependencyInvalidated() - + applyChange { val prevSize = elements.size val removed = elements.removeAt(index)