You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! Thank you for your library! Here is a possible error which i found.
In the Observables.kt file we have the following line of code: fun <T> ObservableSet<SetChange<T>>.changes() = JavaFxObservable.changesOf(this)
It seems there is an error in the receiver type of this function and it should be changed to: fun <T> ObservableSet<T>.changes() = JavaFxObservable.changesOf(this) .
The text was updated successfully, but these errors were encountered:
Hello! Thank you for your library! Here is a possible error which i found.
In the Observables.kt file we have the following line of code:
fun <T> ObservableSet<SetChange<T>>.changes() = JavaFxObservable.changesOf(this)
It seems there is an error in the receiver type of this function and it should be changed to:
fun <T> ObservableSet<T>.changes() = JavaFxObservable.changesOf(this)
.The text was updated successfully, but these errors were encountered: