File tree 1 file changed +2
-3
lines changed 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -163,9 +163,8 @@ public interface OnSubscribe<T> extends Action1<SingleSubscriber<? super T>> {
163
163
* @return a Single that is the result of applying the lifted Operator to the source Single
164
164
* @see <a href="https://github.com/ReactiveX/RxJava/wiki/Implementing-Your-Own-Operators">RxJava wiki: Implementing Your Own Operators</a>
165
165
*/
166
- private <R > Single <R > lift (final Operator <? extends R , ? super T > lift ) {
167
- // This method is private because not sure if we want to expose the Observable.Operator in this public API rather than a Single.Operator
168
-
166
+ @ Experimental
167
+ public final <R > Single <R > lift (final Operator <? extends R , ? super T > lift ) {
169
168
return new Single <R >(new Observable .OnSubscribe <R >() {
170
169
@ Override
171
170
public void call (Subscriber <? super R > o ) {
You can’t perform that action at this time.
0 commit comments