We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70f71d commit 8446736Copy full SHA for 8446736
src/main/java/learnrxjava/ObservableExercises.java
@@ -22,7 +22,8 @@ public Observable<String> exerciseHello() {
22
* @param "Hello Name!"
23
*/
24
public Observable<String> exerciseMap(Observable<String> hello) {
25
- return Observable.error(new RuntimeException("Not Implemented"));
+ //return Observable.error(new RuntimeException("Not Implemented"));
26
+ return Observable.just("Hello").map(n->n+" "+hello);
27
}
28
29
/**
0 commit comments