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)