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
Fix bug in CompositeException.getRootCause (ReactiveX#6380)
* Fix bug in CompositeException.getRootCause
The original code use to be `if (root == null || root == e)`, but apparently after some refactoring it ended up as `if (root == null || cause == root)`, which I believe is a bug.
This method should probably be `static` (that would have prevented the bug).
* Update unit tests for CompositeException.getRootCause
0 commit comments