Skip to content

Commit ad827d8

Browse files
committedFeb 21, 2014
Merge pull request #920 from benjchristensen/delete-deprecated-hook-method
Delete Deprecated onSubscribeStart That Doesn't Work
2 parents b03e07e + afc4da1 commit ad827d8

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)
Please sign in to comment.