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 065d306 commit 35f07bfCopy full SHA for 35f07bf
src/main/java/reactive/workshop/Step7_StreamWorkshop.java
@@ -8,12 +8,13 @@ interface Step7_StreamWorkshop<In> extends Flow.Publisher<In> {
8
default <R> Step9_MappingProcessorWorkshop<In, R> map(Function<In, R> map) {
9
// create mapping processor, subscribe with it and return it
10
// hint: Step9_MappingProcessorWorkshop, this.subscribe(...)
11
+
12
return null;
13
}
14
15
default Step10_FilteringProcessorWorkshop<In> filter(Predicate<In> p) {
16
// create filtering processor, subscribe with it and return it
- // hint: Step9_MappingProcessorWorkshop, this.subscribe(...)
17
+ // hint: Step10_FilteringProcessorWorkshop, this.subscribe(...)
18
19
20
0 commit comments