You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The comment creates confusion, because we actually need to adjust the first line to remove the null and instead call the service and save the result to strings variable.
Something like this would be better.
Flux<String> strings = null;
mashed_data_service()
//todo: replace null with mashed_data_service() call and your solution.
;
The text was updated successfully, but these errors were encountered:
practical-reactor/exercises/src/test/java/c3_FilteringSequence.java
Line 44 in 895dd6d
The comment creates confusion, because we actually need to adjust the first line to remove the
null
and instead call the service and save the result tostrings
variable.Something like this would be better.
The text was updated successfully, but these errors were encountered: