From 80a058760fc3d4010903e7ebbdf68400171d0895 Mon Sep 17 00:00:00 2001 From: Andras Slemmer Date: Thu, 15 Sep 2016 18:00:26 +0100 Subject: [PATCH] client: Relax ChosenList variance --- client/src/main/kotlin/com/r3corda/client/fxutils/ChosenList.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main/kotlin/com/r3corda/client/fxutils/ChosenList.kt b/client/src/main/kotlin/com/r3corda/client/fxutils/ChosenList.kt index d686f1dba3..5191ea6cc8 100644 --- a/client/src/main/kotlin/com/r3corda/client/fxutils/ChosenList.kt +++ b/client/src/main/kotlin/com/r3corda/client/fxutils/ChosenList.kt @@ -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( - private val chosenListObservable: ObservableValue> + private val chosenListObservable: ObservableValue> ): ObservableListBase() { private var currentList = chosenListObservable.value