Skip to content

Commit

Permalink
Fix combinedReducerAndBindableReducer
Browse files Browse the repository at this point in the history
  • Loading branch information
wakwak3125 committed Jan 2, 2018
1 parent acbfef4 commit 4163348
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -421,13 +421,13 @@ public static class CombinedReducerAndBindableReducer {
"import info.izumin.android.droidux.processor.fixture.TodoListReducer;",
"import info.izumin.android.droidux.processor.fixture.Counter;",
"import info.izumin.android.droidux.processor.fixture.TodoList;",
"import io.reactivex.Observable;",
"import io.reactivex.Flowable;",
"@Store({CounterReducer.class, TodoListReducer.class})",
"public interface RootStore extends BaseStore, android.databinding.Observable {",
" Counter counter();",
" Observable<Counter> observeCounter();",
" Flowable<Counter> observeCounter();",
" @Bindable TodoList todoList();",
" Observable<TodoList> observeTodoList();",
" Flowable<TodoList> observeTodoList();",
"}"
};

Expand All @@ -444,9 +444,9 @@ public static class CombinedReducerAndBindableReducer {
"import info.izumin.android.droidux.processor.fixture.CounterReducer;",
"import info.izumin.android.droidux.processor.fixture.TodoList;",
"import info.izumin.android.droidux.processor.fixture.TodoListReducer;",
"import io.reactivex.Flowable;",
"import java.util.ArrayList;",
"import java.util.List;",
"import io.reactivex.Observable;",
"",
"public final class DroiduxRootStore extends BaseObservable implements RootStore {",
" private final DroiduxRootStore_CounterStoreImpl counterStoreImpl;",
Expand Down Expand Up @@ -478,7 +478,7 @@ public static class CombinedReducerAndBindableReducer {
" }",
"",
" @Override",
" public Observable<Counter> observeCounter() {",
" public Flowable<Counter> observeCounter() {",
" return counterStoreImpl.observe();",
" }",
"",
Expand All @@ -488,12 +488,12 @@ public static class CombinedReducerAndBindableReducer {
" }",
"",
" @Override",
" public Observable<TodoList> observeTodoList() {",
" public Flowable<TodoList> observeTodoList() {",
" return todoListStoreImpl.observe();",
" }",
"",
" @Override",
" public Observable<Action> dispatch(Action action) {",
" public Flowable<Action> dispatch(Action action) {",
" return dispatcher.dispatch(action)",
" }",
"",
Expand Down

0 comments on commit 4163348

Please sign in to comment.