-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Closed
Description
Looks like the following protected void subscribeActual()
implementations have unintentionally become public:
There is no reason to call subscribeActual
from outside of RxJava, however, making these protected
counts as a breaking change. However, it should be extremely unlikey somebody was actually using these methods directy.
The question is: do we take the risk and fix the visibility in 2.x or it has to wait for 3.x?
Note that many operators are also having this method as public but those are not really accessible from the outside.