Skip to content

Commit 26788ab

Browse files
authored
Merge pull request #782 from arkivanov/ValueCallback-fun-interface
Make ValueCallback a fun interface
2 parents e82340f + b46d79a commit 26788ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reaktive/src/commonMain/kotlin/com/badoo/reaktive/base/ValueCallback.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.badoo.reaktive.base
33
/**
44
* A common callback for listening for values
55
*/
6-
interface ValueCallback<in T> {
6+
fun interface ValueCallback<in T> {
77

88
/**
99
* Delivers values to the host (typically an [Observer])

0 commit comments

Comments
 (0)