Skip to content

Commit 9c55d45

Browse files
author
Alex
committed
fix Event observable access
1 parent 86730fe commit 9c55d45

File tree

1 file changed

+3
-1
lines changed
  • reactiveviewmodel/src/main/java/com/alexdeww/reactiveviewmodel/core/common

1 file changed

+3
-1
lines changed

reactiveviewmodel/src/main/java/com/alexdeww/reactiveviewmodel/core/common/RvmComponent.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,6 @@ interface RvmComponent {
3232

3333
val <T> Event<T>.consumer: Consumer<T> get() = this.consumer
3434

35-
}
35+
val <T> Event<T>.observable: Observable<T> get() = this.observable
36+
37+
}

0 commit comments

Comments
 (0)