RxKotlinFX icon indicating copy to clipboard operation
RxKotlinFX copied to clipboard

Wrong receiver type of the extension function in the Observables.kt

Open slavonu4 opened this issue 7 years ago • 1 comments

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) .

slavonu4 avatar Jul 26 '18 08:07 slavonu4

Hmmm... I'll take a look, thank you.

thomasnield avatar Jul 26 '18 13:07 thomasnield