-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch Maybe and Single to use their Transformers in compose() #4651
Conversation
@@ -1967,13 +1967,12 @@ public final T blockingGet(T defaultValue) { | |||
* </dl> | |||
* | |||
* @param <R> the value type of the Maybe returned by the transformer function | |||
* @param transformer | |||
* implements the function that transforms the source Maybe | |||
* @param transformer the transformer function, not null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that I just borrowed from the Completable.compose()
doc wording here
Whoops forgot to update the tests, will update in a sec |
IntelliJ user I presume? |
Indeed... Does (I presume 😉) eclipse do something to protect against this? |
Eclipse has an error view which doesn't obscure the project structure, plus when one shows the breadcrumbs, they get error icons indicating there's still something wrong (also the project tree gets error icons) so it is much harder to miss these kinds of errors. |
Current coverage is 77.87% (diff: 100%)@@ 2.x #4651 diff @@
==========================================
Files 559 559
Lines 36654 36654
Methods 0 0
Messages 0 0
Branches 5625 5625
==========================================
- Hits 28560 28543 -17
- Misses 6065 6078 +13
- Partials 2029 2033 +4
|
Interesting, I'll have to check that out! |
Resolves #4650