mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
client: Relax ChosenList variance
This commit is contained in:
parent
f1f8b3180c
commit
80a058760f
@ -21,7 +21,7 @@ import javafx.collections.ObservableListBase
|
||||
* The above will create a list that chooses and delegates to the appropriate filtered list based on the type of filter.
|
||||
*/
|
||||
class ChosenList<E>(
|
||||
private val chosenListObservable: ObservableValue<ObservableList<out E>>
|
||||
private val chosenListObservable: ObservableValue<out ObservableList<out E>>
|
||||
): ObservableListBase<E>() {
|
||||
|
||||
private var currentList = chosenListObservable.value
|
||||
|
Loading…
Reference in New Issue
Block a user