diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/state/ObservableList.kt | 2 | ||||
-rw-r--r-- | src/main/kotlin/pl/treksoft/kvision/state/ObservableSet.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/state/ObservableList.kt b/src/main/kotlin/pl/treksoft/kvision/state/ObservableList.kt index 44e115eb..f6b2d692 100644 --- a/src/main/kotlin/pl/treksoft/kvision/state/ObservableList.kt +++ b/src/main/kotlin/pl/treksoft/kvision/state/ObservableList.kt @@ -216,4 +216,4 @@ class ObservableListWrapper<T>(val mutableList: MutableList<T> = mutableListOf() /** * Creates an instance of ObservableList<T> */ -fun <T> observableListOf(vararg items: T) = ObservableListWrapper(items.toMutableList()) +fun <T> observableListOf(vararg items: T): ObservableList<T> = ObservableListWrapper(items.toMutableList()) diff --git a/src/main/kotlin/pl/treksoft/kvision/state/ObservableSet.kt b/src/main/kotlin/pl/treksoft/kvision/state/ObservableSet.kt index f7b2f8cd..e472ddce 100644 --- a/src/main/kotlin/pl/treksoft/kvision/state/ObservableSet.kt +++ b/src/main/kotlin/pl/treksoft/kvision/state/ObservableSet.kt @@ -122,4 +122,4 @@ class ObservableSetWrapper<T>(val mutableSet: MutableSet<T> = mutableSetOf()) : /** * Creates an instance of ObservableSet<T> */ -fun <T> observableSetOf(vararg items: T) = ObservableSetWrapper(items.toMutableSet()) +fun <T> observableSetOf(vararg items: T): ObservableSet<T> = ObservableSetWrapper(items.toMutableSet()) |