thomasnield / RxKotlinFX

Kotlin extensions to the RxJavaFX framework
Apache License 2.0
176 stars 13 forks source link

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

Open slavonu4 opened 6 years ago

slavonu4 commented 6 years ago

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

thomasnield commented 6 years ago

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