<@U0F3291QE> I just realized while playing with a ...
# tornadofx
n
@edvin I just realized while playing with a
FilteredList
that it make a difference if I do
private val testList = listOf("test1", "test2", "test3", "blub1", "blub2").observable()
private val testList = FXCollections.observableArrayList("test1", "test2", "test3", "blub1", "blub2")
the first one will throw an
UnsupportedOperationException
if you call
setAll(...)
since it is using
ObservableListWrapper
which is not implementing the
setAll
function 😀🙈