Skip to content

Commit afc4da1

Browse files
Delete Deprecated onSubscribeStart That Doesn't Work
- It's messy to make this work so deleting it instead. - Better to move forward in the 0.17 release than try and make this work for the very small percentage (probably only Netflix) that uses it.
1 parent b03e07e commit afc4da1

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

rxjava-core/src/main/java/rx/plugins/RxJavaObservableExecutionHook.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,6 @@ public abstract class RxJavaObservableExecutionHook {
4949
* original {@link Func1}<{@link Subscriber}{@code <T>}, {@link Subscription}> to be executed
5050
* @return {@link Func1}<{@link Subscriber}{@code <T>}, {@link Subscription}> function that can be modified, decorated, replaced or just returned as a pass-thru.
5151
*/
52-
@Deprecated
53-
public <T> OnSubscribeFunc<T> onSubscribeStart(Observable<? extends T> observableInstance, OnSubscribeFunc<T> onSubscribe) {
54-
// pass-thru by default
55-
return onSubscribe;
56-
}
57-
5852
public <T> OnSubscribe<T> onSubscribeStart(Observable<? extends T> observableInstance, final OnSubscribe<T> onSubscribe) {
5953
// pass-thru by default
6054
return onSubscribe;

0 commit comments

Comments
 (0)