-
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
Feature/#5045 more generics in RxJavaPlugins #5058
Feature/#5045 more generics in RxJavaPlugins #5058
Conversation
@@ -16,14 +16,26 @@ | |||
|
|||
package io.reactivex.plugins; | |||
|
|||
import io.reactivex.*; | |||
import io.reactivex.Completable; |
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.
Please keep imports as *
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.
Yes. Changed the code style settings accordingly.
Do you have a code style configuration for IntelliJ Idea?
Looks like this needs rebasing. I'm sorrry, I'm trying to merge your PRs in proper order but multiple recent PRs change the same file(s). |
Yeah, no problem. Rebasing isn't too difficult ;-) |
fixed import and rebased |
c97d4e3
to
7011146
Compare
Looks like there is a compilation error with the changes. |
7011146
to
4ae8c82
Compare
Uups. Fixed it (at least I hope) |
Codecov Report@@ Coverage Diff @@
## 2.x #5058 +/- ##
============================================
- Coverage 95.65% 95.58% -0.08%
+ Complexity 5544 5538 -6
============================================
Files 612 612
Lines 39575 39575
Branches 5554 5554
============================================
- Hits 37857 37828 -29
- Misses 746 759 +13
- Partials 972 988 +16
Continue to review full report at Codecov.
|
import io.reactivex.Observer; | ||
import io.reactivex.Scheduler.Worker; | ||
import io.reactivex.disposables.*; | ||
import io.reactivex.disposables.Disposable; |
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.
Could you also restore these import changes to their * form?
import io.reactivex.exceptions.TestException; | ||
import io.reactivex.flowables.ConnectableFlowable; | ||
import io.reactivex.functions.*; | ||
import io.reactivex.functions.BiFunction; |
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.
Please restore these as well.
I widened the bounds for the functions. Looks good for me.
Related to #5045